mirror of
https://github.com/nikdoof/test-auth.git
synced 2026-01-30 16:08:14 +00:00
Updated various URL errors on SSO templates
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
{% for user in users %}
|
{% 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 %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
<table>
|
<table>
|
||||||
<tr><th>Character Name</th><th>Corp</th></tr>
|
<tr><th>Character Name</th><th>Corp</th></tr>
|
||||||
{% for char in characters %}
|
{% 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>
|
<td>{{ char.corp }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% 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>{% if acc.active %}Yes{% else %}No{% endif %}</td>
|
||||||
<td><a href="{% url sso.views.service_del acc.id %}/">Delete</a>
|
<td><a href="{% url sso.views.service_del acc.id %}/">Delete</a>
|
||||||
{% if acc.active %}
|
{% 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 %}
|
{% 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 %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</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>
|
<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 name="confirm-delete" type="hidden" value="1"/>
|
||||||
<input type="submit" value="Confirm Delete" />
|
<input type="submit" value="Confirm Delete" />
|
||||||
</form>
|
</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
|
<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>
|
below.</p>
|
||||||
|
|
||||||
<form action="{% url sso.views.service_reset serviceid %}/" method="post">
|
<form action="{% url sso.views.service_reset serviceid %}" method="post">
|
||||||
<table>
|
<table>
|
||||||
{{ form.as_table }}
|
{{ form.as_table }}
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user