summaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/editor_changelog.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-01-11 15:17:32 -0800
committerBryan Newbold <bnewbold@robocracy.org>2019-01-11 15:17:34 -0800
commit811f0a52779afdaa8e1f11a3781fc22fa3acc02c (patch)
treee6bed28dfde8e897d97b85fabfc731dc0a9e18fb /python/fatcat_web/templates/editor_changelog.html
parentee938e9edc9abfc33cdef6dc716eff89aceb5ca6 (diff)
downloadfatcat-811f0a52779afdaa8e1f11a3781fc22fa3acc02c.tar.gz
fatcat-811f0a52779afdaa8e1f11a3781fc22fa3acc02c.zip
use full-on autoaccept mode
Now that editor_id is infered from token, don't *need* to create ahead of time. This backend change simplifies things greatly (either update an existing editgroup, or create new and *only* include entities in the batch transaction), at the cost of being able to configure the editgroup in any way, including setting a description.
Diffstat (limited to 'python/fatcat_web/templates/editor_changelog.html')
-rw-r--r--python/fatcat_web/templates/editor_changelog.html29
1 files changed, 0 insertions, 29 deletions
diff --git a/python/fatcat_web/templates/editor_changelog.html b/python/fatcat_web/templates/editor_changelog.html
deleted file mode 100644
index 785c19bd..00000000
--- a/python/fatcat_web/templates/editor_changelog.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{% 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>Changelog<br>Index
- <th>Timestamp (UTC)
- <th>Editgroup
- <th>Editor
- <th>Description
- <tbody>
- {% for entry in changelog_entries %}
- <tr><td><a href="/changelog/{{ entry.index }}">{{ entry.index }}</a>
- <td>{{ entry.timestamp }}
- <td><code><a href="/editgroup/{{ entry.editgroup_id }}">{{ entry.editgroup_id }}</a></code>
- <td><code><a href="/editor/{{ entry.editgroup.editor_id }}">{{ entry.editgroup.editor_id }}</a></code>
- <td>{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %}
- {% endfor %}
-</table>
-
-{% endblock %}