diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-28 17:07:51 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-28 17:08:30 -0800 |
commit | de6108bce532510057898040689349b8f4cd3846 (patch) | |
tree | 03d57c2d1abafd1e42722397b724de3d2df1b482 /python/fatcat_web/templates/entity_history.html | |
parent | d126c74f1326449e5941c8bac4dbe724dc067ef8 (diff) | |
download | fatcat-de6108bce532510057898040689349b8f4cd3846.tar.gz fatcat-de6108bce532510057898040689349b8f4cd3846.zip |
band-aid editgroups/changelog views a bit
Commiting fixes from last week.
Diffstat (limited to 'python/fatcat_web/templates/entity_history.html')
-rw-r--r-- | python/fatcat_web/templates/entity_history.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/python/fatcat_web/templates/entity_history.html b/python/fatcat_web/templates/entity_history.html index 57818179..102fb1b5 100644 --- a/python/fatcat_web/templates/entity_history.html +++ b/python/fatcat_web/templates/entity_history.html @@ -9,20 +9,20 @@ </div> </h1> -<h3 class="ui header">Fatcat Metadata Edit History</h3> +<h3 class="ui header">Edit History</h3> + +This table only shows <i>merged</i> edits, not work-in-progress. <table class="ui table"> - <thead><tr><th>Changelog<br>Index - <th>Timestamp (UTC) + <thead><tr><th>Changelog <th>Editgroup - <th>Editor <th>Description <tbody> {% for entry in history %} <tr><td><a href="/changelog/{{ entry.changelog_entry.index }}">{{ entry.changelog_entry.index }}</a> - <td>{{ entry.changelog_entry.timestamp }} - <td><a href="/editgroup/{{ entry.editgroup.editgroup_id }}">{{ entry.editgroup.editgroup_id }}</a> - <td><a href="/editor/{{ entry.editgroup.editor_id }}">{{ entry.editgroup.editor_id }}</a> + <br>{{ entry.changelog_entry.timestamp.strftime("%Y-%m-%d %H:%M") }} + <td><a href="/editgroup/{{ entry.editgroup.editgroup_id }}">{{ entry.editgroup.editgroup_id[:8] }}...</a> by + <a href="/editor/{{ entry.editgroup.editor_id }}">editor_id</a> <td>{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %} {% endfor %} </table> |