##// END OF EJS Templates
old style: don't let changelog buttons at the top influence changelog/graph floating
old style: don't let changelog buttons at the top influence changelog/graph floating

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4149:30a683d0 rhodecode-2.2.5-gpl
Show More
repo_edit_statistics.html
13 lines | 603 B | text/html | HtmlLexer
/ rhodecode / templates / admin / repos / repo_edit_statistics.html
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${h.form(url('edit_repo_statistics', repo_name=c.repo_info.repo_name), method='put')}
<div class="form">
<div class="fields">
<div class="field" style="border:none;color:#888">
<ul>
<li>${_('Processed commits')}: ${c.stats_revision}/${c.repo_last_rev}</li>
<li>${_('Processed progress')}: ${c.stats_percentage}%</li>
</ul>
</div>
${h.submit('reset_stats_%s' % c.repo_info.repo_name,_('Reset statistics'),class_="btn btn-small",onclick="return confirm('"+_('Confirm to remove current statistics')+"');")}
</div>
</div>
${h.end_form()}