home · contact · privacy
Add rump Days module.
[plomtask] / templates / calendar.html
diff --git a/templates/calendar.html b/templates/calendar.html
new file mode 100644 (file)
index 0000000..0f18203
--- /dev/null
@@ -0,0 +1,9 @@
+{% extends 'base.html' %}
+
+{% block content %}
+<ul>
+{% for day in days %}
+<li>{{day.date}} ({{day.weekday}})
+{% endfor %}
+</ul>
+{% endblock %}