From b35e9773198ef2d8b37c4ca223f08147db47de0b Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sat, 12 Dec 2015 21:14:28 +0100 Subject: moving the root of source code from / to /src/ --- web/templates/admin/dashboard.html | 60 -------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 web/templates/admin/dashboard.html (limited to 'web/templates/admin/dashboard.html') diff --git a/web/templates/admin/dashboard.html b/web/templates/admin/dashboard.html deleted file mode 100644 index 25bd3883..00000000 --- a/web/templates/admin/dashboard.html +++ /dev/null @@ -1,60 +0,0 @@ -{% extends "layout.html" %} -{% block head%} -{{super()}} -{% endblock %} -{% block content %} -
-

{{ _('Registered users') }}

- - - - - - - - - - - - {% for user in users|sort(attribute="last_seen")|reverse %} - - - {% if user.id == current_user.id %} - - {% else %} - - {% endif %} - - - - - {% endfor %} - -
#{{ _('Nickname') }}{{ _('Email') }}{{ _('Last seen') }}{{ _('Actions') }}
{{ loop.index }}{{ user.nickname }} (It's you!){{ user.nickname }}{{ user.email }}{{ user.last_seen }} - - - {% if user.id != current_user.id %} - {% if user.activation_key == "" %} - - {% else %} - - {% endif %} - - {% endif %} -
-{{ _('Add a new user') }} -

{{ _('Send notification messages') }}

-
- {{ form.hidden_tag() }} - - {{ form.subject.label }} - {{ form.subject(class_="form-control") }} {% for error in form.subject.errors %} {{ error }}
{% endfor %} - - {{ form.message.label }} - {{ form.message(class_="form-control", rows=8) }} {% for error in form.message.errors %} {{ error }}
{% endfor %} - -
- {{ form.submit(class_="btn btn-default") }} -
-
-{% endblock %} -- cgit