%if c.should_upgrade:
A new version is available !
%if c.latest_data.get('title'):
RhodeCode
${c.latest_ver} - ${h.literal(c.latest_data['title'])}
%else:
RhodeCode
${c.latest_ver}
%endif
%else:
Your current version, ${c.cur_ver}, is up-to-date as it is equal to or newer than the latest available version, ${c.latest_ver}.
%endif
% if c.should_upgrade and c.important_notices:
Summary:
% for notice in c.important_notices:
- ${notice}
% endfor
% endif