1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-03 01:17:56 +03:00

Fixed about to include build version && also upgraded it a bit

This commit is contained in:
Adolfo Gómez García 2016-05-20 13:34:53 +02:00
parent 074a4d525d
commit 1b71fef8b4
2 changed files with 7 additions and 7 deletions

View File

@ -4,8 +4,8 @@
{% block body %}
<div class="jumbotron">
<h2 class="text-center">Universal Desktop Services {{ version }}</h2>
<p class="text-center"><small><a href="http://www.udsenterprise.com" target="_blank"> &copy; 2012-2015 Virtual Cable S.L.U.</a></small></p>
<h2 class="text-center">Universal Desktop Services {{ version }} build {{ version_stamp }}</h2>
<p class="text-center"><small><a href="http://www.udsenterprise.com" target="_blank"> &copy; 2012-2016 Virtual Cable S.L.U.</a></small></p>
</div>
<div class="row">
@ -32,13 +32,12 @@
<li><a href="http://malsup.com/jquery/block/" target="_blank">jQuery blockui</a></li>
<li><a href="http://www.flotcharts.org/" target="_blank">flot</a></li>
<li><a href="https://datatables.net/" target="_blank">jQuery datatables</a></li>
<li><a href="https://datatables.net/extras/tabletools/" target="_blank">jQuery Datatables tabletools</a></li>
<li><a href="https://github.com/eligrey/Blob.js/" target="_blank">Blob</a></li>
<li><a href="https://github.com/eligrey/FileSaver.js/" target="_blank">Filesaver</a></li>
<li><a href="http://kde-look.org/content/show.php/Crystal+Project?content=60475)" target="_blank">Crystal project icons</a></li>
<li><a href="https://github.com/NitruxSA/flattr-icons" target="_blank">Flattr Icons</a></li>
</ul>
<p><small>* {% trans 'If you found that we missed to mention any component, please let us know' %}</small></p>
<p><small>* {% trans 'If you find that we missed any component, please let us know' %}</small></p>
<p class="text-center"><a href="{% url 'uds.web.views.index' %}" class="btn btn-lg btn-info"><i class="fa fa-home"></i> {% trans "Back" %}</a></p>
</div>
</div>

View File

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