{% extends "note_base.html" %}
+{% load notes_extras %}
-{% block title %}Archive {{ month }} / {{ year }} – Notes{% endblock %}
+{% block title %}Archive {{ month|month_name}} {{ year }} – Notes{% endblock %}
{% block content %}
-<h2>Archive {{ month }} / {{ year }}</h2>
+<h2>Archive {{ month|month_name }} {{ year }}</h2>
-
-{% endblock %}
\ No newline at end of file
+{% if notes %}
+<ul>
+ {% for note in notes %}
+ <li><a href="{{ note.get_absolute_url }}">{{ note.title }}</a></li>
+ {% endfor %}
+</ul>
+{% else %}
+<p>No notes</p>
+{% endif %}
+{% endblock %}