aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/admin/edit-league.html
blob: 4f31eeb2eb86e879c7281dd2a7238654e6740e00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="admin-hint">
  <p>
    [% loc(
      "The diligency prize league table shows editors' activity (who's been editing the most records)."
    ) %]
  </p>
</div>
<h2>[% loc('Diligency prize league table') %]</h2>
[% IF edit_activity.count %]
<ul>
    [% WHILE ( editor = edit_activity.next ) %]
    <li>[% tprintf( loc('%d edits by %s'), editor.get_column('c'), editor.editor ) %]</li>
    [% END %]
</ul>
[% ELSE %]
<p>
[% loc('No edits have yet been made.') %]
</p>
[% END %]