From 1b71fef8b4288e895e4e1b6826512ed050ae494e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Fri, 20 May 2016 13:34:53 +0200 Subject: [PATCH] Fixed about to include build version && also upgraded it a bit --- server/src/uds/templates/uds/html5/about.html | 11 +++++------ server/src/uds/web/views/index.py | 3 ++- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/server/src/uds/templates/uds/html5/about.html b/server/src/uds/templates/uds/html5/about.html index 151aae434..b77a0d041 100644 --- a/server/src/uds/templates/uds/html5/about.html +++ b/server/src/uds/templates/uds/html5/about.html @@ -4,8 +4,8 @@ {% block body %}
-

Universal Desktop Services {{ version }}

-

© 2012-2015 Virtual Cable S.L.U.

+

Universal Desktop Services {{ version }} build {{ version_stamp }}

+

© 2012-2016 Virtual Cable S.L.U.

@@ -24,7 +24,7 @@
  • Bootstrap touchspin
  • Font Awesome by Dave Gandy
  • Coffescript
  • -
  • Sass/Compass
  • +
  • Sass / Compass
  • jQuery
  • Handlebars
  • jQuery cookie
  • @@ -32,15 +32,14 @@
  • jQuery blockui
  • flot
  • jQuery datatables
  • -
  • jQuery Datatables tabletools
  • Blob
  • Filesaver
  • Crystal project icons
  • Flattr Icons
  • -

    * {% trans 'If you found that we missed to mention any component, please let us know' %}

    +

    * {% trans 'If you find that we missed any component, please let us know' %}

    {% trans "Back" %}

    -{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/server/src/uds/web/views/index.py b/server/src/uds/web/views/index.py index 67505d6f0..fc5a61ed9 100644 --- a/server/src/uds/web/views/index.py +++ b/server/src/uds/web/views/index.py @@ -46,7 +46,7 @@ from uds.core.util import html from uds.core.ui import theme from uds.core.managers.UserServiceManager import UserServiceManager -from uds.core import VERSION +from uds.core import VERSION, VERSION_STAMP import logging @@ -64,6 +64,7 @@ def about(request): theme.template('about.html'), { 'version': VERSION, + 'version_stamp': VERSION_STAMP }, context_instance=RequestContext(request) )