mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
Updated various URL errors on SSO templates
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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 %}
|
||||
|
||||
@@ -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 %}
|
||||
/ <a href="{% url sso.views.service_reset acc.id %}/">Reset</a>
|
||||
/ <a href="{% url sso.views.service_reset acc.id %}">Reset</a>
|
||||
{% if acc.service.provide_login %}
|
||||
/ <a href="{% url sso.views.service_login acc.id %}/">Login</a>
|
||||
/ <a href="{% url sso.views.service_login acc.id %}">Login</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</td>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user