aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat/templates/editor_changelog.html
blob: e14108741d70c9ea89ec3437afec58bf55cf5f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends "base.html" %}
{% block body %}

<h1>Editor Changelog: {{ editor.username }}</h1>

<p>Editor: <a href="/editor/{{ editor.username }}">{{ editor.username }}</a>

<p>Changes accepted (aka, merged editgroups):
<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 %}