degal/templates.py
changeset 124 cac613118e75
parent 120 55cb7fc9c8fb
child 127 37d19805b7ca
--- a/degal/templates.py	Mon Jun 15 00:29:43 2009 +0300
+++ b/degal/templates.py	Mon Jun 15 01:36:15 2009 +0300
@@ -2,7 +2,7 @@
     Templates for HTML output
 """
 
-import html
+import html, version
 from html import tags
 
 def link_from (source, target) :
@@ -182,7 +182,12 @@
             body,
             
             # footer
-            tags.p(id='about')(tags.a(href='http://projects.qmsk.net/degal')('Degal'), gallery.version)
+            tags.p(id='about')(
+                "Generated using",
+                tags.a(href='http://projects.qmsk.net/degal')('Degal'), 
+                "version",
+                tags.a(href=version.VERSION_URL)(version.VERSION_STRING),
+            )
         ],
     )