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 %} +