Fix bug 537
authorpythonsnake <pythonsnake98@gmail.com>
Sun, 10 Feb 2013 11:01:24 +0000 (12:01 +0100)
committerpythonsnake <pythonsnake98@gmail.com>
Sun, 10 Feb 2013 11:01:24 +0000 (12:01 +0100)
mediagoblin/templates/mediagoblin/base.html
mediagoblin/tools/template.py

index 34986fdb226606a9c5664ce684cbf8fbab4da788..5fe1ba1b3a2c9f7b1967f57495483890c81e8622 100644 (file)
       {% block mediagoblin_footer %}
           <footer>
             {% trans -%}
-              Powered by <a href="http://mediagoblin.org">MediaGoblin</a>, a <a href="http://gnu.org/">GNU</a> project.
+            Powered by <a href="http://mediagoblin.org" title='{{ version }}'>MediaGoblin</a>, a <a href="http://gnu.org/">GNU</a> project.
             {%- endtrans %}
             {% trans source_link=app_config['source_link'] -%}
               Released under the <a href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPL</a>. <a href="{{ source_link }}">Source code</a> available.
index a58dd2ca9ec0a96ff8e4cb61798df56ea93ba9f1..74d811eb8460bd23e9de418b705ef8817329bc06 100644 (file)
@@ -25,6 +25,7 @@ from werkzeug.urls import url_quote_plus
 
 from mediagoblin import mg_globals
 from mediagoblin import messages
+from mediagoblin import _version
 from mediagoblin.tools import common
 from mediagoblin.tools.translate import get_gettext_translation
 from mediagoblin.tools.pluginapi import get_hook_templates
@@ -68,6 +69,7 @@ def get_jinja_env(template_loader, locale):
     template_env.globals['fetch_messages'] = messages.fetch_messages
     template_env.globals['app_config'] = mg_globals.app_config
     template_env.globals['global_config'] = mg_globals.global_config
+    template_env.globals['version'] = _version.__version__
 
     template_env.filters['urlencode'] = url_quote_plus