aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/admin/admin_page.html
diff options
context:
space:
mode:
Diffstat (limited to 'apioforum/templates/admin/admin_page.html')
-rw-r--r--apioforum/templates/admin/admin_page.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/apioforum/templates/admin/admin_page.html b/apioforum/templates/admin/admin_page.html
new file mode 100644
index 0000000..f48c6c0
--- /dev/null
+++ b/apioforum/templates/admin/admin_page.html
@@ -0,0 +1,15 @@
+{% extends 'base.html' %}
+{% block header %}
+<h1>{% block title %}admin page{% endblock %}</h1>
+{% endblock %}
+
+{% block content %}
+<h2>admins</h2>
+<ul>
+ {% for admin in admins %}
+ <li>{{admin.username}}</li>
+ {% endfor %}
+</ul>
+<p>this page will have more things on it later, probably</p>
+{% endblock %}
+