aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat/templates/release_changelog.html
diff options
context:
space:
mode:
Diffstat (limited to 'fatcat/templates/release_changelog.html')
-rw-r--r--fatcat/templates/release_changelog.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/fatcat/templates/release_changelog.html b/fatcat/templates/release_changelog.html
new file mode 100644
index 00000000..47526749
--- /dev/null
+++ b/fatcat/templates/release_changelog.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% block body %}
+
+<h1>Release Changelog: {{ release.id }}</h1>
+
+<p>release: <a href="/release/{{ release.id }}">{{ release.id }}</a>
+
+<p>Changelog:
+<ul>
+{% for entry in changelog_entries %}
+ <li><a href="/editgroup/{{ entry.edit_group }}">Edit Group #{{ entry.edit_group }}</a> (on {{ entry.timestamp }})
+{% else %}
+NONE
+{% endfor %}
+</ul>
+
+{% endblock %}