diff options
Diffstat (limited to 'templates/newsletter/submission_archive.html')
-rw-r--r-- | templates/newsletter/submission_archive.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/newsletter/submission_archive.html b/templates/newsletter/submission_archive.html new file mode 100644 index 0000000..771b995 --- /dev/null +++ b/templates/newsletter/submission_archive.html @@ -0,0 +1,21 @@ +{% extends "newsletter/common.html" %} + +{% load i18n %} + +{% block title %}{% trans "Newsletter archive" %}{% endblock title %} + +{% block body %} +<table> + <tr> + <th>{% trans "Newsletter archive" %} {{ newsletter.title }}</th> + </tr> + {% for submission in latest %} + <tr> + <td><a href="{{ submission.get_absolute_url }}">{{ submission }}</a></td> + </tr> + {% endfor %} + <tr> + <td><a href="../">{% trans "Back to list" %}</a></td> + </tr> +</table> +{% endblock body %} |