{% block content %}
<h2>Archive {{ month }} / {{ year }}</h2>
-
+{% 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 %}
\ No newline at end of file
return render(request, 'archive_year.html', {'year': archive_year, 'months': notes_months})
def archive_month(request, archive_year, archive_month):
- return render(request, 'archive_month.html', {'year': archive_year, 'month': archive_month})
\ No newline at end of file
+ notes = Note.objects.filter(status=1, created_at__year=archive_year, created_at__month=archive_month)
+ return render(request, 'archive_month.html', {'year': archive_year, 'month': archive_month, 'notes': notes})
\ No newline at end of file