From 6c064d7613ce09f095c2f522448a1af64d2d9ecd Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 17 Nov 2013 23:19:05 +0100 Subject: Added inactives.html template. --- pyaggr3g470r/templates/inactives.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pyaggr3g470r/templates/inactives.html diff --git a/pyaggr3g470r/templates/inactives.html b/pyaggr3g470r/templates/inactives.html new file mode 100644 index 00000000..f245fc1b --- /dev/null +++ b/pyaggr3g470r/templates/inactives.html @@ -0,0 +1,21 @@ +{% extends "layout.html" %} +{% block content %} +
+
+ {% if inactives != [] %} +
+

Days of inactivity:

+ +
+
+
    + {% for item in inactives %} +
  • {{ item[0].title }} - {{ item[1].days }} days
  • + {% endfor %} +
+ {% else %} +

No inactive feeds.

+ {% endif %} +

+
+{% endblock %} \ No newline at end of file -- cgit