blob: 9c8ac61c3e27bd87122acbef3cf97a5aa8eb8d93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base_foundation.html" %}
{% load i18n %}
{% block og_title %}{% translate "Meeting minutes archive" %}{% endblock %}
{% block og_description %}{% blocktranslate with month=month|date:"F, Y" %}View meeting minutes for {{ month }}{% endblocktranslate %}{% endblock %}
{% block content %}
<h1>{% blocktranslate with month=month|date:"F, Y" %}Meeting minutes archive: {{ month }}{% endblocktranslate %}</h1>
<ul>
{% for meeting in object_list %}
<li><a href="{{ meeting.get_absolute_url }}">{{ meeting }}</a></li>
{% endfor %}
</ul>
{% endblock %}
|