diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-02-26 10:29:57 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-02-26 12:03:32 -0800 |
commit | d280b1b4fdc57bfd4c0c9cb56fd836d2ae80dbb5 (patch) | |
tree | 74ec3a50b361b3c4b3d3035780c2c0a25bc9d586 /python/fatcat_web/templates/editor_editgroups.html | |
parent | 96db9d510a6891594271af7c284c46335b4d7502 (diff) | |
download | fatcat-d280b1b4fdc57bfd4c0c9cb56fd836d2ae80dbb5.tar.gz fatcat-d280b1b4fdc57bfd4c0c9cb56fd836d2ae80dbb5.zip |
web: generic view improvements (entities, lists)
Diffstat (limited to 'python/fatcat_web/templates/editor_editgroups.html')
-rw-r--r-- | python/fatcat_web/templates/editor_editgroups.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/fatcat_web/templates/editor_editgroups.html b/python/fatcat_web/templates/editor_editgroups.html index 3c3dd20d..756b3a02 100644 --- a/python/fatcat_web/templates/editor_editgroups.html +++ b/python/fatcat_web/templates/editor_editgroups.html @@ -1,15 +1,15 @@ {% extends "base.html" %} {% block body %} -<h1 class="ui header">Edit History +<h1 class="ui header">{{ editor.username }}: Edit History <div class="sub header"> - <code>editor - <a href="/editor/{{editor.editor_id}}">{{ editor.username }}</a> - </code> - </a> + <code>editor_{{editor.editor_id}}</code> </div> </h1> +<a href="/editor/{{ editor.editor_id }}/editgroups">Edit History</a> - +<a href="/editor/{{ editor.editor_id }}/annotations">Comments and Annotation History</a> +<br> <table class="ui table"> <thead><tr>{# <th>Created (UTC) #} <th>Status @@ -28,7 +28,7 @@ Work in Progress {% endif %} <td><small><code><a href="/editgroup/{{ editgroup.editgroup_id }}"> - {{ editgroup.editgroup_id }} + editgroup_{{ editgroup.editgroup_id }} </a></code></small> <td>{% if editgroup.description != None %}{{ editgroup.description }}{% endif %} {% endfor %} |