diff options
Diffstat (limited to 'templates/public/userlist.html')
-rw-r--r-- | templates/public/userlist.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/public/userlist.html b/templates/public/userlist.html new file mode 100644 index 00000000..ce8cb145 --- /dev/null +++ b/templates/public/userlist.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block content %} +<div class="box"> + <h2 class="title">Arch Linux {{user_type}}</h2> + <p>{{description}}</p> + {% with users as dev_list %} + {% include 'public/developer_list.html' %} + {% endwith %} +</div> +<br /><br /> +{% endblock %} + |