blob: 578181792e150946498a72a2f046f8e455b42494 (
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
28
29
30
|
{% extends "base.html" %}
{% block body %}
<h1 class="ui header">{% if page_title != None %}{{ page_title }}{% endif %}
<div class="sub header">
<a href="/{{entity_type}}/{{entity.ident}}">
<code>{{ entity_type }} {{ entity.ident }}</code>
</a>
</div>
</h1>
<h3 class="ui header">Fatcat Metadata Edit History</h3>
<table class="ui table">
<thead><tr><th>Changelog<br>Index
<th>Timestamp (UTC)
<th>Editgroup
<th>Editor
<th>Description
<tbody>
{% for entry in history %}
<tr><td><a href="/changelog/{{ entry.changelog_entry.index }}">{{ entry.changelog_entry.index }}</a>
<td>{{ entry.changelog_entry.timestamp }}
<td><a href="/editgroup/{{ entry.editgroup.editgroup_id }}">{{ entry.editgroup.editgroup_id }}</a>
<td><a href="/editor/{{ entry.editgroup.editor_id }}">{{ entry.editgroup.editor_id }}</a>
<td>{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %}
{% endfor %}
</table>
{% endblock %}
|