aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/editgroup_reviewable.html
blob: b1ece6afbcb041dac89edddba67262a3b11cbc4b (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
{% extends "base.html" %}
{% 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 %}