This commit is contained in:
Ross
2021-12-14 19:35:22 +00:00
parent d0d073025c
commit 68aa22e01a
4 changed files with 26 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
{% extends 'generic/base.html' %}
{% block content %}
The following users have been emailed:
{% for u in users %}
<p>{{u.cid}}: {{u.email}}</p>
{% endfor %}
{% endblock %}