{% extends "note_base.html" %} {% load notes_extras %} {% block title %}Archive {{ month|month_name}} {{ year }} – Notes{% endblock %} {% block content %}
Archive {{ month|month_name }} {{ year }}
{% if notes %}
{% for note in notes %}
{{ note.title }}
{% endfor %}
{% else %}
No notes
{% endif %} {% endblock %}