diff options
Diffstat (limited to 'python/fatcat_web/templates/editor_editgroups.html')
-rw-r--r-- | python/fatcat_web/templates/editor_editgroups.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/python/fatcat_web/templates/editor_editgroups.html b/python/fatcat_web/templates/editor_editgroups.html index 785c19bd..cb9b2f56 100644 --- a/python/fatcat_web/templates/editor_editgroups.html +++ b/python/fatcat_web/templates/editor_editgroups.html @@ -11,18 +11,16 @@ <p>Changes accepted (aka, merged editgroups): <table class="ui table"> - <thead><tr><th>Changelog<br>Index - <th>Timestamp (UTC) + <thead><tr><th>Created (UTC) <th>Editgroup <th>Editor <th>Description <tbody> - {% for entry in changelog_entries %} - <tr><td><a href="/changelog/{{ entry.index }}">{{ entry.index }}</a> - <td>{{ entry.timestamp }} - <td><code><a href="/editgroup/{{ entry.editgroup_id }}">{{ entry.editgroup_id }}</a></code> - <td><code><a href="/editor/{{ entry.editgroup.editor_id }}">{{ entry.editgroup.editor_id }}</a></code> - <td>{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %} + {% for editgroup in editgroups %} + <tr><td>{{ editgroup.created }} + <td><code><a href="/editgroup/{{ editgroup.editgroup_id }}">{{ editgroup.editgroup_id }}</a></code> + <td><code><a href="/editor/{{ editgroup.editor_id }}">{{ editgroup.editor_id }}</a></code> + <td>{% if editgroup.description != None %}{{ editgroup.description }}{% endif %} {% endfor %} </table> |