]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/archive_year.html
Convert month numbers to month names
[pcdenotes.git] / notes / templates / archive_year.html
index ec643289ad661858a5f06c83269d1b849b72e81e..4d3d9059c0a188ed5ad7b2ba598e07f91088dfd1 100644 (file)
@@ -1,9 +1,18 @@
 {% extends "note_base.html" %}
+{% load notes_extras %}
 
 {% block title %}Archive {{ year }} – Notes{% endblock %}
 
 {% block content %}
 <h2>Archive {{ year }}</h2>
 
-
+{% if months %}
+<ul>
+  {% for month in months %}
+    <li><a href="{{ month }}/">{{ month|month_name }}</a></li>
+  {% endfor %}
+</ul>
+{% else %}
+<p>No notes</p>
+{% endif %}
 {% endblock %}
\ No newline at end of file

patrick-canterino.de