##// END OF EJS Templates
dependencies: bumped test libraries versions....
dependencies: bumped test libraries versions. - pytest to 3.2.3 - pytest-sugar to 0.9.0 - pytest-profiling to 1.2.11 - WebTest to 2.0.29 - gprof2dot to 2017.9.19

File last commit:

r2105:4ad1a937 default
r2274:37f054de default
Show More
repo_edit_statistics.mako
22 lines | 958 B | application/x-mako | MakoHtmlLexer
/ rhodecode / templates / admin / repos / repo_edit_statistics.mako
templating: use .mako as extensions for template files.
r1282 <div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Repository statistics')}</h3>
</div>
<div class="panel-body">
forms: unified usage of h.secure_form. Make sure we ALWAYS pass in...
r2105 ${h.secure_form(h.route_path('edit_repo_statistics_reset', repo_name=c.rhodecode_db_repo.repo_name), request=request)}
templating: use .mako as extensions for template files.
r1282 <div class="form">
<div class="fields">
<div class="field" >
<dl class="dl-horizontal settings">
<dt>${_('Processed commits')}:</dt><dd>${c.stats_revision}/${c.repo_last_rev}</dd>
<dt>${_('Processed progress')}:</dt><dd>${c.stats_percentage}%</dd>
</dl>
</div>
apps: removed deprecated usage of c.repo_info
r2081 ${h.submit('reset_stats_%s' % c.rhodecode_db_repo.repo_name,_('Reset statistics'),class_="btn btn-small",onclick="return confirm('"+_('Confirm to remove current statistics')+"');")}
templating: use .mako as extensions for template files.
r1282 </div>
</div>
${h.end_form()}
</div>
</div>