Users is also a listing.

This commit is contained in:
Flancian 2020-11-16 20:44:34 +01:00
parent 3460add012
commit 8d10f5634e
1 changed files with 3 additions and 1 deletions

View File

@ -15,9 +15,11 @@
-->
{% extends "base.html" %}
<h1> Users </h1>
{% block content %}
<div class="listing">
<h1> Users </h1>
{% for user in users %}
<a href="{{user.url}}">{{user.uri}}</a><br />
{% endfor %}
</div>
{% endblock %}