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:
parent
074a4d525d
commit
1b71fef8b4
@ -4,8 +4,8 @@
|
|||||||
{% block body %}
|
{% block body %}
|
||||||
|
|
||||||
<div class="jumbotron">
|
<div class="jumbotron">
|
||||||
<h2 class="text-center">Universal Desktop Services {{ version }}</h2>
|
<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"> © 2012-2015 Virtual Cable S.L.U.</a></small></p>
|
<p class="text-center"><small><a href="http://www.udsenterprise.com" target="_blank"> © 2012-2016 Virtual Cable S.L.U.</a></small></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@ -24,7 +24,7 @@
|
|||||||
<li><a href="http://www.virtuosoft.eu/code/bootstrap-touchspin/" target="_blank">Bootstrap touchspin</a></li>
|
<li><a href="http://www.virtuosoft.eu/code/bootstrap-touchspin/" target="_blank">Bootstrap touchspin</a></li>
|
||||||
<li><a href="http://fontawesome.io" target="_blank">Font Awesome by Dave Gandy</a></li>
|
<li><a href="http://fontawesome.io" target="_blank">Font Awesome by Dave Gandy</a></li>
|
||||||
<li><a href="http://coffeescript.org/" target="_blank">Coffescript</a></li>
|
<li><a href="http://coffeescript.org/" target="_blank">Coffescript</a></li>
|
||||||
<li><a href="http://sass-lang.com/" target="_blank">Sass</a>/<a href="http://compass-style.org/" target="_blank">Compass</a></li>
|
<li><a href="http://sass-lang.com/" target="_blank">Sass</a> / <a href="http://compass-style.org/" target="_blank">Compass</a></li>
|
||||||
<li><a href="http://jquery.com/" target="_blank">jQuery</a></li>
|
<li><a href="http://jquery.com/" target="_blank">jQuery</a></li>
|
||||||
<li><a href="http://handlebarsjs.com/" target="_blank">Handlebars</a></li>
|
<li><a href="http://handlebarsjs.com/" target="_blank">Handlebars</a></li>
|
||||||
<li><a href="https://github.com/carhartl/jquery-cookie" target="_blank">jQuery cookie</a></li>
|
<li><a href="https://github.com/carhartl/jquery-cookie" target="_blank">jQuery cookie</a></li>
|
||||||
@ -32,15 +32,14 @@
|
|||||||
<li><a href="http://malsup.com/jquery/block/" target="_blank">jQuery blockui</a></li>
|
<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="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/" 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/Blob.js/" target="_blank">Blob</a></li>
|
||||||
<li><a href="https://github.com/eligrey/FileSaver.js/" target="_blank">Filesaver</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="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>
|
<li><a href="https://github.com/NitruxSA/flattr-icons" target="_blank">Flattr Icons</a></li>
|
||||||
</ul>
|
</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>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -46,7 +46,7 @@ from uds.core.util import html
|
|||||||
|
|
||||||
from uds.core.ui import theme
|
from uds.core.ui import theme
|
||||||
from uds.core.managers.UserServiceManager import UserServiceManager
|
from uds.core.managers.UserServiceManager import UserServiceManager
|
||||||
from uds.core import VERSION
|
from uds.core import VERSION, VERSION_STAMP
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
@ -64,6 +64,7 @@ def about(request):
|
|||||||
theme.template('about.html'),
|
theme.template('about.html'),
|
||||||
{
|
{
|
||||||
'version': VERSION,
|
'version': VERSION,
|
||||||
|
'version_stamp': VERSION_STAMP
|
||||||
},
|
},
|
||||||
context_instance=RequestContext(request)
|
context_instance=RequestContext(request)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user