summaryrefslogtreecommitdiffstats
path: root/templates/public/userlist.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/public/userlist.html')
-rw-r--r--templates/public/userlist.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/public/userlist.html b/templates/public/userlist.html
new file mode 100644
index 0000000..ce8cb14
--- /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 %}
+