blob: 5906af75500ae0b52ce53065f5c68826bdd184ef (
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
|
{% extends "base.html" %}
{% block title %}{{ editor.username }} (editor){% endblock %}
{% block body %}
<h1 class="ui header">{{ editor.username }}
<div class="sub header">
<code>editor_{{ editor.editor_id }}</code>
</div>
</h1>
<a href="/editor/{{ editor.editor_id }}/editgroups">Edit History</a> -
<a href="/editor/{{ editor.editor_id }}/annotations">Comments and Annotation History</a>
<br>
<br>
<div class="ui small info message">
<div class="header">
This page is intentionally bare
</div>
<p>We don't have much to share about individual editors.
</div>
{% endblock %}
|