From 2b823fb90565a7f60e1274e054de07e87a0d203a Mon Sep 17 00:00:00 2001 From: Corentin Chary Date: Tue, 14 Aug 2012 10:27:00 +0200 Subject: [PATCH] djeuscan: better email template Signed-off-by: Corentin Chary --- .../templates/euscan/_package_vlogs.html | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 euscanwww/djeuscan/templates/euscan/_package_vlogs.html diff --git a/euscanwww/djeuscan/templates/euscan/_package_vlogs.html b/euscanwww/djeuscan/templates/euscan/_package_vlogs.html new file mode 100644 index 0000000..f67fb06 --- /dev/null +++ b/euscanwww/djeuscan/templates/euscan/_package_vlogs.html @@ -0,0 +1,31 @@ +{% load djeuscan_helpers %} + + {% if vlog %} +
Version history
+
+
    + {% for version in vlog %} + {% if version.action == version.VERSION_ADDED %} +
  • + {% else %} +
  • + {% endif %} + {% if version.overlay == "gentoo" %} + gentoo + {% elif version.overlay %} + overlays + {% else %} + upstream + {% endif %} + + {% if version.vtype and not version.vtype|is_stable %} + unstable + {% endif %} + + {{ version }} - {{ version.datetime }} + +
  • + {% endfor %} +
+
+ {% endif %}