]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/archive_month.html
Convert month numbers to month names
[pcdenotes.git] / notes / templates / archive_month.html
index 1bcf0285124543b050551c6b21ff4a69d0e7d2f2..835fcca6df69c141a59e9e96f1a8af3decdfcb36 100644 (file)
@@ -1,14 +1,15 @@
 {% 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>
 
 {% if notes %}
 <ul>
   {% for note in notes %}
-    <li><a href="{{ note.get_absolute_url }}"">{{ note.title }}</a></li>
+    <li><a href="{{ note.get_absolute_url }}">{{ note.title }}</a></li>
   {% endfor %}
 </ul>
 {% else %}

patrick-canterino.de