##// END OF EJS Templates
pull-requests: loosen strict view of pull-requests that state is changing...
pull-requests: loosen strict view of pull-requests that state is changing - we now replace it with limited view which still allows deletion/editing of reviewers or title and description - added labels for state changing instead of grey out (it was used for closed PRs) - small UI fixes

File last commit:

r2431:61a0f874 default
r4103:78e087c7 default
Show More
settings_system_update.mako
26 lines | 674 B | application/x-mako | MakoHtmlLexer
## -*- coding: utf-8 -*-
## upgrade block rendered afte on-click check
<div class="alert ${'alert-warning' if c.should_upgrade else 'alert-success'}">
<p>
%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:
This instance is already running the <b>latest</b> stable version ${c.latest_ver}.
%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>