##// END OF EJS Templates
fix(caching): fixed problems with Cache query for users....
fix(caching): fixed problems with Cache query for users. The old way of querying caused the user get query to be always cached, and returning old results even in 2fa forms. The new limited query doesn't cache the user object resolving issues

File last commit:

r5037:bd722d6e default
r5365:ae8a165b default
Show More
settings_system_update.mako
25 lines | 649 B | application/x-mako | MakoHtmlLexer
/ rhodecode / templates / admin / settings / settings_system_update.mako
templating: use .mako as extensions for template files.
r1282 ## upgrade block rendered afte on-click check
<div class="alert ${'alert-warning' if c.should_upgrade else 'alert-success'}">
update: add new async task to check for updates via scheduler....
r2431 <p>
templating: use .mako as extensions for template files.
r1282 %if c.should_upgrade:
A <b>new version</b> is available:
%if c.latest_data.get('title'):
<b>${h.literal(c.latest_data['title'])}</b>
%else:
<b>${c.latest_ver}</b>
%endif
%else:
update: add new async task to check for updates via scheduler....
r2431 This instance is already running the <b>latest</b> stable version ${c.latest_ver}.
templating: use .mako as extensions for template files.
r1282 %endif
</p>
% if c.should_upgrade and c.important_notices:
<div>Important notes for this release:</div>
<ul>
% for notice in c.important_notices:
<li>- ${notice}</li>
% endfor
</ul>
% endif
</div>