blob: 4cfea6971c989353027393aedb45e45811bd21a6 (
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
31
32
33
34
|
{% extends "base.html" %}
{% block title %}Reviewable Editgroups{% endblock %}
{% block body %}
<h1 class="ui header">Reviewable Editgroups
</h1>
Limited to the most recent entries.
<table class="ui table">
<thead><tr><th>Editgroup
<th>Description
<tbody>
{% for editgroup in entries %}
<tr><td>
{% if editgroup.editor.is_bot %}
<i class="icon bug"></i>
{% else %}
<i class="icon user"></i>
{% endif %}
<a href="/editor/{{ editgroup.editor_id }}">{{ editgroup.editor.username }}</a>
<br>
Submitted: {{ editgroup.submitted.strftime("%Y-%m-%d %H:%M:%S") }}
<br>
<small><code><a href="/editgroup/{{ editgroup.editgroup_id }}">
{{ editgroup.editgroup_id }}
</a></code></small>
<td>{% if editgroup.description != None %}{{ editgroup.description }}{% endif %}
{% endfor %}
</table>
{% endblock %}
|