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 %}