From b2618e9404b84cc62d4becb02436233a0d53b375 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 25 Nov 2015 22:45:43 +0100 Subject: Rfactorization. Just a start... --- web/templates/history.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 web/templates/history.html (limited to 'web/templates/history.html') diff --git a/web/templates/history.html b/web/templates/history.html new file mode 100644 index 00000000..6be54d71 --- /dev/null +++ b/web/templates/history.html @@ -0,0 +1,26 @@ +{% extends "layout.html" %} +{% block content %} +
+

{{ _('History') }}

+ {% if month != None %} +

{{ year }}

+

{{ month | month_name }}

+ {% elif year != None %} +

 {{ _('all years') }}

+

{{ year }}

+ {% endif %} + +
+{% endblock %} -- cgit