summaryrefslogtreecommitdiff
path: root/djangoproject/templates/foundation/meeting_archive_month.html
blob: 720d921eecf9b64eeccb78343c4bafaed6f16b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% 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 content %}