aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/changelog.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-04-03 19:29:16 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-04-03 19:29:16 -0700
commitca59441dab7bd99645c98c03dceb314c5d9fae5d (patch)
treec51b0139b1c3660e7d863edb949c4d1e958d9df9 /python/fatcat_web/templates/changelog.html
parent526ee41b187a2373c08679bc9bc582679beaa9ef (diff)
downloadfatcat-ca59441dab7bd99645c98c03dceb314c5d9fae5d.tar.gz
fatcat-ca59441dab7bd99645c98c03dceb314c5d9fae5d.zip
small UI tweaks for editgroups/account
Diffstat (limited to 'python/fatcat_web/templates/changelog.html')
-rw-r--r--python/fatcat_web/templates/changelog.html23
1 files changed, 17 insertions, 6 deletions
diff --git a/python/fatcat_web/templates/changelog.html b/python/fatcat_web/templates/changelog.html
index 0d4ae657..7d5505bc 100644
--- a/python/fatcat_web/templates/changelog.html
+++ b/python/fatcat_web/templates/changelog.html
@@ -8,16 +8,27 @@ Limited to the most recent entries.
<table class="ui table">
<thead><tr><th>Changelog<br>Index
- <th>Timestamp (UTC)
<th>Editgroup
- <th>Editor
<th>Description
<tbody>
{% for entry in entries %}
- <tr><td><a href="/changelog/{{ entry.index }}">{{ entry.index }}</a>
- <td>{{ entry.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}
- <td><a href="/editgroup/{{ entry.editgroup_id }}">{{ entry.editgroup_id }}</a>
- <td><a href="/editor/{{ entry.editgroup.editor_id }}">{{ entry.editgroup.editor_id }}</a>
+ <tr><td><a href="/changelog/{{ entry.index }}">#{{ entry.index }}</a>
+ <br>{{ entry.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}
+ <td>
+ {#
+ {% if entry.editgroup.editor.is_bot %}
+ <i class="icon bug"></i>
+ {% else %}
+ <i class="icon user"></i>
+ {% endif %}
+ #}
+ Editor: <code><a href="/editor/{{ entry.editgroup.editor_id }}">
+ {{ entry.editgroup.editor_id[:8] }}...</a>
+ </a></code>
+ <br>
+ <small><code><a href="/editgroup/{{ entry.editgroup.editgroup_id }}">
+ {{ entry.editgroup.editgroup_id }}
+ </a></code></small>
<td>{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %}
{% endfor %}
</table>