##// END OF EJS Templates
api: allow uncached content fetching....
api: allow uncached content fetching. - this is mostly to optimize for memory of indexer

File last commit:

r1282:90601d74 default
r3479:58288c09 default
Show More
settings_system_snapshot.mako
40 lines | 626 B | application/x-mako | MakoHtmlLexer
/ rhodecode / templates / admin / settings / settings_system_snapshot.mako
templating: use .mako as extensions for template files.
r1282
<pre>
SYSTEM INFO
-----------
% for dt, dd, warn in c.data_items:
${dt.lower().replace(' ', '_')}${': '+dd if dt else '---'}
% if warn and warn['message']:
ALERT_${warn['type'].upper()} ${warn['message']}
% endif
% endfor
PYTHON PACKAGES
---------------
% for key, value in c.py_modules['human_value']:
${key}: ${value}
% endfor
SYSTEM SETTINGS
---------------
% for key, value in sorted(c.rhodecode_config['human_value'].items()):
% if isinstance(value, dict):
% for key2, value2 in value.items():
[${key}]${key2}: ${value2}
% endfor
% else:
${key}: ${value}
% endif
% endfor
</pre>