aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/entity_history.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-02-26 10:29:57 -0800
committerBryan Newbold <bnewbold@robocracy.org>2021-02-26 12:03:32 -0800
commitd280b1b4fdc57bfd4c0c9cb56fd836d2ae80dbb5 (patch)
tree74ec3a50b361b3c4b3d3035780c2c0a25bc9d586 /python/fatcat_web/templates/entity_history.html
parent96db9d510a6891594271af7c284c46335b4d7502 (diff)
downloadfatcat-d280b1b4fdc57bfd4c0c9cb56fd836d2ae80dbb5.tar.gz
fatcat-d280b1b4fdc57bfd4c0c9cb56fd836d2ae80dbb5.zip
web: generic view improvements (entities, lists)
Diffstat (limited to 'python/fatcat_web/templates/entity_history.html')
-rw-r--r--python/fatcat_web/templates/entity_history.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/python/fatcat_web/templates/entity_history.html b/python/fatcat_web/templates/entity_history.html
index c9f45d84..0115b845 100644
--- a/python/fatcat_web/templates/entity_history.html
+++ b/python/fatcat_web/templates/entity_history.html
@@ -3,9 +3,9 @@
{% block entity_main %}
-<h3 class="ui header">Edit History</h3>
+<h3 class="ui header">Entity Edit History</h3>
-This table only shows <i>merged</i> edits, not work-in-progress.
+This table only shows <i>accepted</i> edits included in the catalog, not any work-in-progress.
<table class="ui table">
<thead><tr><th>Changelog
@@ -17,7 +17,7 @@ This table only shows <i>merged</i> edits, not work-in-progress.
<br>{{ entry.changelog_entry.timestamp.strftime("%Y-%m-%d %H:%M") }}
<td>
{% if entry.editgroup.editor.is_bot %}
- <i class="icon bug"></i>
+ <i class="icon server"></i>
{% else %}
<i class="icon user"></i>
{% endif %}
@@ -34,5 +34,9 @@ This table only shows <i>merged</i> edits, not work-in-progress.
<td>{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %}
{% endfor %}
</table>
+<div style="float: right; font-size: smaller;">
+ <a href="{{ config.FATCAT_API_HOST }}/{{ entity_type }}/{{ entity.ident }}/history">As JSON via API</a>
+</div>
+
{% endblock %}