##// END OF EJS Templates
admin: fixed problems with generating last change in admin panels....
admin: fixed problems with generating last change in admin panels. - from now on also updated_on will refer as last commit change instead of last update of DB. Reason for that is since we have audit logs the last db update should be taken from there along the change info. Storing last commit date in the dedicated field makes it searchable, sortable and faster to read.

File last commit:

r3974:cb1bcddc default
r4000:52837660 default
Show More
settings_system.mako
63 lines | 1.9 KiB | application/x-mako | MakoHtmlLexer
templating: use .mako as extensions for template files.
r1282
<div id="update_notice" style="display: none; margin: -40px 0px 20px 0px">
<div>${_('Checking for updates...')}</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('System Info')}</h3>
% if c.allowed_to_snapshot:
settings: switched system-info to pyramid view.
r1306 <a href="${h.route_path('admin_settings_system', _query={'snapshot':1})}" class="panel-edit">${_('create summary snapshot')}</a>
templating: use .mako as extensions for template files.
r1282 % endif
</div>
<div class="panel-body">
system-info: fix styling for elements
r3974 <dl class="dl-horizontal settings dt-400">
templating: use .mako as extensions for template files.
r1282 % for dt, dd, warn in c.data_items:
<dt>${dt}${':' if dt else '---'}</dt>
<dd>${dd}${'' if dt else '---'}
% if warn and warn['message']:
<div class="alert-${warn['type']}">
<strong>${warn['message']}</strong>
</div>
% endif
</dd>
% endfor
</dl>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
dan
system-info: expose data about vcsserver.
r3943 <h3 class="panel-title">${_('VCS Server')}</h3>
</div>
<div class="panel-body">
system-info: fix styling for elements
r3974 <dl class="dl-horizontal settings dt-400">
dan
system-info: expose data about vcsserver.
r3943 % for dt, dd in c.vcsserver_data_items:
<dt>${dt}${':' if dt else '---'}</dt>
<dd>${dd}${'' if dt else '---'}</dd>
% endfor
</dl>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
templating: use .mako as extensions for template files.
r1282 <h3 class="panel-title">${_('Python Packages')}</h3>
</div>
<div class="panel-body">
system-info: fix styling for elements
r3974 <dl class="dl-horizontal settings dt-400">
% for dt, dd in c.py_modules['human_value']:
<dt>${dt}${':' if dt else '---'}</dt>
<dd>${dd}${'' if dt else '---'}</dd>
% endfor
</dl>
templating: use .mako as extensions for template files.
r1282 </div>
</div>
<script>
$('#check_for_update').click(function(e){
$('#update_notice').show();
repo-summary: re-implemented summary view as pyramid....
r1785 $('#update_notice').load("${h.route_path('admin_settings_system_update')}");
templating: use .mako as extensions for template files.
r1282 })
</script>