##// END OF EJS Templates
Update LICENSE.md to include license information about Select2...
Update LICENSE.md to include license information about Select2 License details were taken from the LICENSE file in Select2 distribution.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4129:3e32980f rhodecode-2.2.5-gpl
Show More
repo_edit_statistics.html
13 lines | 603 B | text/html | HtmlLexer
${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()}