aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat/templates/changelog.html
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat/templates/changelog.html')
-rw-r--r--python/fatcat/templates/changelog.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/python/fatcat/templates/changelog.html b/python/fatcat/templates/changelog.html
deleted file mode 100644
index f33fe7c8..00000000
--- a/python/fatcat/templates/changelog.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "base.html" %}
-{% block body %}
-
-<h1 class="ui header">Recent Changes
-<div class="sub header"><code>changelog</code></div></h1>
-
-Limited to the most recent ~50 entries.
-
-<table class="ui table">
- <thead><tr><th>Changelog<br>Index
- <th>Timestamp (UTC)
- <th>Editgroup
- <th>Editor
- <th>Description
- <tbody>
- {% for entry in entries %}
- <tr><td><a href="/changelog/{{ entry.index }}">{{ entry.index }}</a>
- <td>{{ entry.timestamp }}
- <td><a href="/editgroup/{{ entry.editgroup_id }}">{{ entry.editgroup_id }}</a>
- <td><a href="/editor/{{ entry.editgroup.editor_id }}">{{ entry.editgroup.editor_id }}</a>
- <td>{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %}
- {% endfor %}
-</table>
-
-{% endblock %}