Updated various URL errors on SSO templates

This commit is contained in:
2010-04-30 16:11:58 +01:00
parent a98827c8f4
commit d75cf26343
5 changed files with 6 additions and 6 deletions

View File

@@ -8,7 +8,7 @@
<ul>
{% for user in users %}
<li><a href="{% url sso.views.view_user user.name %}/">{{ user.name }}</a></li>
<li><a href="{% url sso.views.view_user user.name %}">{{ user.name }}</a></li>
{% endfor %}
</ul>

View File

@@ -40,7 +40,7 @@
<table>
<tr><th>Character Name</th><th>Corp</th></tr>
{% for char in characters %}
<tr><td><a href="{% url sso.views.characters char.id %}/">{{ char.name }}</a></td>
<tr><td><a href="{% url sso.views.characters char.id %}">{{ char.name }}</a></td>
<td>{{ char.corp }}</td>
</tr>
{% endfor %}

View File

@@ -30,9 +30,9 @@ create a login for a service click the Add Service link</p>
<td>{% if acc.active %}Yes{% else %}No{% endif %}</td>
<td><a href="{% url sso.views.service_del acc.id %}/">Delete</a>
{% if acc.active %}
&nbsp;/&nbsp;<a href="{% url sso.views.service_reset acc.id %}/">Reset</a>
&nbsp;/&nbsp;<a href="{% url sso.views.service_reset acc.id %}">Reset</a>
{% if acc.service.provide_login %}
&nbsp;/&nbsp;<a href="{% url sso.views.service_login acc.id %}/">Login</a>
&nbsp;/&nbsp;<a href="{% url sso.views.service_login acc.id %}">Login</a>
{% endif %}
{% endif %}
</td>

View File

@@ -8,7 +8,7 @@ create a new account until fixed by a Sysop. If you are having issues logging in
<p>If you are sure, then please click confirm</p>
<form action="{% url sso.views.service_del acc.id %}/" method="post">
<form action="{% url sso.views.service_del acc.id %}" method="post">
<input name="confirm-delete" type="hidden" value="1"/>
<input type="submit" value="Confirm Delete" />
</form>

View File

@@ -7,7 +7,7 @@
<p>This service will reset your password for account {{ acc.service_uid }} on {{ acc.service }}. If you wish to continue please click the link
below.</p>
<form action="{% url sso.views.service_reset serviceid %}/" method="post">
<form action="{% url sso.views.service_reset serviceid %}" method="post">
<table>
{{ form.as_table }}
</table>