forked from shaba/openuds
* Added a "preinit" to xscreensaver, to give some more oportunities on
linux to initialize this correctly. * Fixed typos on dashboard * Fixed not saving correctly textarea fields of configuration
This commit is contained in:
parent
7648e9c655
commit
cc4619220a
@ -292,6 +292,9 @@ if __name__ == '__main__':
|
||||
logger.error('UDS Service is not running. Tool stopped')
|
||||
sys.exit(1)
|
||||
|
||||
# Sets a default idle duration, but will not be used unless idle is notified from server
|
||||
operations.initIdleDuration(3600 * 10)
|
||||
|
||||
trayIcon.show()
|
||||
|
||||
# Catch kill and logout user :)
|
||||
|
@ -45,7 +45,7 @@
|
||||
</div>
|
||||
{{ else }}
|
||||
{{# ifequals value.type 1 }}
|
||||
<textarea class="form-control" data-section="{{ cfg_section }}" data-key="{{ cfg_key }}" rows="3">{{ value.value }}</textarea>
|
||||
<textarea class="form-control config-ctrl" data-section="{{ cfg_section }}" data-key="{{ cfg_key }}" rows="3">{{ value.value }}</textarea>
|
||||
{{ else }}
|
||||
{{# ifequals value.type 3 }}
|
||||
<input type="checkbox" data-on-text="{% endverbatim %}{% trans 'Yes' %}{% verbatim %}" data-off-text="{% endverbatim %}{% trans 'No' %}{% verbatim %}" class="config-ctrl" {{# ifequals value.value 1 }} checked{{/ ifequals }} data-section="{{ cfg_section }}" data-key="{{ cfg_key }}">
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% load i18n %}
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h1>{% trans 'Connectivity' %} <small>{% trans 'overview' %}</small></h1>
|
||||
<h1>{% trans 'Connectivity' %}</h1>
|
||||
<ol class="breadcrumb">
|
||||
<li><a class="lnk-dashboard" href="#"><i class="fa fa-dashboard"></i> Dashboard</a></li>
|
||||
<li>{% trans 'Connectivity' %}</li>
|
||||
|
@ -1,7 +1,7 @@
|
||||
{% load i18n %}
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<h1>Os Managers <small>{% trans 'overview' %}</small></h1>
|
||||
<h1>Os Managers</h1>
|
||||
<ol class="breadcrumb">
|
||||
<li><a class="lnk-dashboard" href="#"><i class="fa fa-dashboard"></i> Dashboard</a></li>
|
||||
<li>OS Managers</li>
|
||||
|
Loading…
Reference in New Issue
Block a user