blob: cb9b2f56254032f863b5c0e181e2b30bfe485dab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{% extends "base.html" %}
{% block body %}
<h1 class="ui header">Editor Changelog: {{ editor.username }}
<div class="sub header">
<a href="/editor/{{editor.editor_id}}">
<code>editor {{ editor.editor_id }}</code>
</a>
</div>
</h1>
<p>Changes accepted (aka, merged editgroups):
<table class="ui table">
<thead><tr><th>Created (UTC)
<th>Editgroup
<th>Editor
<th>Description
<tbody>
{% for editgroup in editgroups %}
<tr><td>{{ editgroup.created }}
<td><code><a href="/editgroup/{{ editgroup.editgroup_id }}">{{ editgroup.editgroup_id }}</a></code>
<td><code><a href="/editor/{{ editgroup.editor_id }}">{{ editgroup.editor_id }}</a></code>
<td>{% if editgroup.description != None %}{{ editgroup.description }}{% endif %}
{% endfor %}
</table>
{% endblock %}
|