##// END OF EJS Templates
comments: improved comments form layout....
comments: improved comments form layout. - changed to be made to support comments types - cleaner UI

File last commit:

r1114:4074d5a1 default
r1281:71c01ca9 default
Show More
settings_system_snapshot.html
40 lines | 626 B | text/html | HtmlLexer
/ rhodecode / templates / admin / settings / settings_system_snapshot.html
system-settings: prepare to allow to create snapshots of full system settings...
r280
<pre>
SYSTEM INFO
-----------
system-info: fetch vcs settings from vcsserver. Fixes #4276...
r1111 % for dt, dd, warn in c.data_items:
system-info: improve formatting of snapshot info page.
r1114 ${dt.lower().replace(' ', '_')}${': '+dd if dt else '---'}
system-info: fetch vcs settings from vcsserver. Fixes #4276...
r1111 % if warn and warn['message']:
ALERT_${warn['type'].upper()} ${warn['message']}
% endif
system-settings: prepare to allow to create snapshots of full system settings...
r280 % endfor
PYTHON PACKAGES
---------------
system-info: fetch vcs settings from vcsserver. Fixes #4276...
r1111 % for key, value in c.py_modules['human_value']:
system-settings: prepare to allow to create snapshots of full system settings...
r280 ${key}: ${value}
% endfor
SYSTEM SETTINGS
---------------
system-info: fetch vcs settings from vcsserver. Fixes #4276...
r1111 % for key, value in sorted(c.rhodecode_config['human_value'].items()):
system-settings: prepare to allow to create snapshots of full system settings...
r280 % if isinstance(value, dict):
% for key2, value2 in value.items():
[${key}]${key2}: ${value2}
% endfor
% else:
${key}: ${value}
% endif
% endfor
</pre>