link to user details in user list

This commit is contained in:
Laura Klünder 2017-12-08 22:19:24 +01:00
parent 9454c82058
commit 1ba35a4605

View file

@ -18,7 +18,7 @@
{% for user in users %}
<tr>
<td>{{ user.id }}</td>
<td>{{ user.username }}</td>
<td><a href="{% url 'control.users.detail' user=user.pk %}">{{ user.username }}</a></td>
</tr>
{% endfor %}
</table>