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) )