aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/release_changelog.html
blob: 706a564286b3cfaac039cd9e4d2af6c3d65b0bee (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.editgroup }}">Edit Group #{{ entry.editgroup }}</a> (on {{ entry.timestamp }})
{% else %}
NONE
{% endfor %}
</ul>

{% endblock %}