From 282c5ae7216f6f9e7e360e5663038ccec2771701 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Sun, 31 Jan 2021 18:32:30 +1100 Subject: [PATCH] fix up month, etc. view not having proper divs for heading rows --- templates/files.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/files.html b/templates/files.html index 277f412..91088d2 100644 --- a/templates/files.html +++ b/templates/files.html @@ -92,12 +92,12 @@ {% endif %} {% elif which == "Month" %} {% if last.printed != obj.file_details[0].woy %} -
Week #: {{obj.file_details[0].woy}} of {{obj.file_details[0].year}}
+
Week #: {{obj.file_details[0].woy}} of {{obj.file_details[0].year}}
{% set last.printed = obj.file_details[0].woy %} {% endif %} {% elif which == "Year" %} {% if last.printed != obj.file_details[0].month %} -
Month: {{obj.file_details[0].month}} of {{obj.file_details[0].year}}
+
Month: {{obj.file_details[0].month}} of {{obj.file_details[0].year}}
{% set last.printed = obj.file_details[0].month %} {% endif %} {% endif %}