From e95f2381f1ffef0b7b04930eca0ec499ab451419 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Wed, 27 Dec 2023 08:23:34 +0000 Subject: [PATCH] Add gaps web page template --- templates/gaps.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 templates/gaps.html diff --git a/templates/gaps.html b/templates/gaps.html new file mode 100644 index 0000000..a5f9504 --- /dev/null +++ b/templates/gaps.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block content %} +
+ +

Gaps

+ +{% for start, end in gaps %} + + + + + +{% endfor %} +
{{ start.strftime("%A, %-d %b %Y") }}{{ end.strftime("%A, %-d %b %Y") }}{{ (end - start).days }} days
+
+ +{% endblock %} +