untracked file from server
authorJan Szejko <j-sz@o2.pl>
Wed, 16 Mar 2016 14:47:06 +0000 (15:47 +0100)
committerJan Szejko <j-sz@o2.pl>
Wed, 16 Mar 2016 14:47:06 +0000 (15:47 +0100)
apps/catalogue/templates/catalogue/active_users_list.html [new file with mode: 0755]

diff --git a/apps/catalogue/templates/catalogue/active_users_list.html b/apps/catalogue/templates/catalogue/active_users_list.html
new file mode 100755 (executable)
index 0000000..f711b60
--- /dev/null
@@ -0,0 +1,20 @@
+{% extends "catalogue/base.html" %}
+{% load i18n %}
+
+
+{% block titleextra %}{% trans "Active users" %}{% endblock %}
+
+
+{% block content %}
+
+<h1>
+    {% trans "Active users since" %} {{ since }}
+</h1>
+
+<ul>
+{% for email, names, count in users %}
+<li>{% for name in names %}{{ name }},  {% endfor %}<a href="mailto:{{ email }}">{{ email }}</a> ({{ count }})</li>
+{% endfor %}
+</ul>
+
+{% endblock content %}