coriplus/app/templates/user_list.html

11 lines
225 B
HTML
Raw Permalink Normal View History

2019-10-23 21:09:51 +02:00
{% extends "base.html" %}
{% block body %}
<h1>{{ title }}</h1>
<ul>
{% for user in user_list %}
<li><a href="/+{{ user.username }}">{{ user.username }}</a></li>
{% endfor %}
</ul>
{% endblock %}