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/editor_changelog.html | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 python/fatcat_web/templates/editor_changelog.html (limited to 'python/fatcat_web/templates/editor_changelog.html') diff --git a/python/fatcat_web/templates/editor_changelog.html b/python/fatcat_web/templates/editor_changelog.html new file mode 100644 index 00000000..79127312 --- /dev/null +++ b/python/fatcat_web/templates/editor_changelog.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} +{% block body %} + +

Editor Changelog: {{ editor.username }} + +

+ +

Changes accepted (aka, merged editgroups): + + + {% for entry in changelog_entries %} +
Changelog
Index +
Timestamp (UTC) + Editgroup + Editor + Description +
{{ entry.index }} + {{ entry.timestamp }} + {{ entry.editgroup_id }} + {{ entry.editgroup.editor_id }} + {% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %} + {% endfor %} +
+ +{% endblock %} -- cgit v1.2.3