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_annotations.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_annotations.html')
-rw-r--r-- | python/fatcat_web/templates/editor_annotations.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/python/fatcat_web/templates/editor_annotations.html b/python/fatcat_web/templates/editor_annotations.html index c46039f5..7a8b53cf 100644 --- a/python/fatcat_web/templates/editor_annotations.html +++ b/python/fatcat_web/templates/editor_annotations.html @@ -1,16 +1,16 @@ {% extends "base.html" %} {% block body %} -<h1 class="ui header">Comments and Annotations +<h1 class="ui header">{{ editor.username }}: Comments and Annotations <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> +<br> {% for annotation in annotations %} <div class="ui segments"> <div class="ui top attached secondary segment"> @@ -29,7 +29,7 @@ </div> </div> {% else %} - <i>None!</i> + <i>No comments or annotations for this editor!</i> {% endfor %} {% endblock %} |