Fix missing view user instances

This commit is contained in:
2012-07-06 20:10:01 +01:00
parent 9dff342d0e
commit 11c1ca17b4
3 changed files with 4 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
</thead>
<tbody>
{% for user, chars, status in member_list %}
<tr><td><a href="{% url sso.views.user_view user.username %}">{{ user.username }}</a></td>
<tr><td><a href="{% url sso-viewuser user.username %}">{{ user.username }}</a></td>
<td>{{ chars }}</td>
<td>{{ status }}</td>
<td><a href="{% url groups.views.kick_member group.id user.id %}">Kick Member</a>
@@ -37,7 +37,7 @@
</thead>
<tbody>
{% for req in requests %}
<tr><td><a href="{% url sso.views.user_view req.user.username %}">{{ req.user }}</a></td>
<tr><td><a href="{% url sso-viewuser req.user.username %}">{{ req.user }}</a></td>
<td>{{ req.character }}</td>
<td>{{ req.reason }}</td>
<td>{{ req.get_status_display }}</td>