From b03bfc8f3fd84141738f775b273a99850d78e1ff Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 12 Nov 2018 23:18:56 -0800 Subject: refactor python modules --- python/fatcat_web/templates/entity_history.html | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 python/fatcat_web/templates/entity_history.html (limited to 'python/fatcat_web/templates/entity_history.html') diff --git a/python/fatcat_web/templates/entity_history.html b/python/fatcat_web/templates/entity_history.html new file mode 100644 index 00000000..54577b2f --- /dev/null +++ b/python/fatcat_web/templates/entity_history.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} +{% block body %} + +

{% if page_title != None %}{{ page_title }}{% endif %} + +

+ +

Fatcat Metadata Edit History

+ + + + {% for entry in history %} +
Changelog
Index +
Timestamp (UTC) + Editgroup + Editor + Description +
{{ entry.changelog_entry.index }} + {{ entry.changelog_entry.timestamp }} + {{ entry.editgroup.id }} + {{ entry.editgroup.editor_id }} + {% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %} + {% endfor %} +
+ +{% endblock %} -- cgit v1.2.3