aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat/templates/release_changelog.html
blob: 47526749ae48e0a14cdd3b563bc0b77f60f1f8b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 %}