]> git.p6c8.net - pcdenotes.git/blob - notes/templates/archive_month.html
Updated dependencies
[pcdenotes.git] / notes / templates / archive_month.html
1 {% extends "note_base.html" %}
2 {% load notes_extras %}
3
4 {% block title %}Archive {{ month|month_name}} {{ year }} – Notes{% endblock %}
5
6 {% block content %}
7 <h2>Archive {{ month|month_name }} {{ year }}</h2>
8
9 {% if notes %}
10 <ul>
11 {% for note in notes %}
12 <li><a href="{{ note.get_absolute_url }}">{{ note.title }}</a></li>
13 {% endfor %}
14 </ul>
15 {% else %}
16 <p>No notes</p>
17 {% endif %}
18 {% endblock %}

patrick-canterino.de