diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-03 12:10:54 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-03 12:10:54 -0700 |
commit | 668076105a975c2898c912c6259aa0189a7662a7 (patch) | |
tree | 1cc55bf5e0927704f4698cb1769e06a82a1b841e /python/fatcat_web/templates/editgroup_reviewable.html | |
parent | 681135eff787493d786c1e50f52e3125c06e0d97 (diff) | |
download | fatcat-668076105a975c2898c912c6259aa0189a7662a7.tar.gz fatcat-668076105a975c2898c912c6259aa0189a7662a7.zip |
reviewable view; improvments to editgroup views
Diffstat (limited to 'python/fatcat_web/templates/editgroup_reviewable.html')
-rw-r--r-- | python/fatcat_web/templates/editgroup_reviewable.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/python/fatcat_web/templates/editgroup_reviewable.html b/python/fatcat_web/templates/editgroup_reviewable.html new file mode 100644 index 00000000..f3d75353 --- /dev/null +++ b/python/fatcat_web/templates/editgroup_reviewable.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} +{% block body %} + +<h1 class="ui header">Reviewable Editgroups +</h1> + +Limited to the most recent entries. + +<table class="ui table"> + <thead><tr><th>Submitted (UTC) + <th>Editgroup + <th>Editor + <th>Description + <tbody> + {% for editgroup in entries %} + <tr><td>{{ editgroup.submitted }} + <td><a href="/editgroup/{{ editgroup.editgroup_id }}">{{ editgroup.editgroup_id }}</a> + <td><a href="/editor/{{ editgroup.editor_id }}">{{ editgroup.editor_id }}</a> + <td>{% if editgroup.description != None %}{{ editgroup.description }}{% endif %} + {% endfor %} +</table> + +{% endblock %} |