From 5d220e360454e7643eb5539fa329702cb5c273c5 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 9 Apr 2014 20:14:33 +0200 Subject: Management of users via the administrator's account. --- pyaggr3g470r/templates/admin/dashboard.html | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 pyaggr3g470r/templates/admin/dashboard.html (limited to 'pyaggr3g470r/templates/admin/dashboard.html') diff --git a/pyaggr3g470r/templates/admin/dashboard.html b/pyaggr3g470r/templates/admin/dashboard.html new file mode 100644 index 00000000..2913d603 --- /dev/null +++ b/pyaggr3g470r/templates/admin/dashboard.html @@ -0,0 +1,44 @@ +{% extends "layout.html" %} +{% block head%} +{{super()}} +{% endblock %} +{% block content %} +
+

Registered users

+ + + + + + + + + + + + {% for user in users|sort(attribute="firstname") %} + + + + + + + + {% endfor %} + +
#FirstnameLastnameEmailActions
{{ loop.index }}{{ user.firstname }}{{ user.lastname }}{{ user.email }} + + + {% if user.apikey == "" %} + + {% else %} + + {% endif %} + +
+
+Add a new user +

+

As an administrator you are not listed in this table.

+
+{% endblock %} \ No newline at end of file -- cgit