blob: 771b99590b826a15f726e91ef41df51d7573e0b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 %}
|