aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/editor_editgroups.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/editor_editgroups.html
parent526ee41b187a2373c08679bc9bc582679beaa9ef (diff)
downloadfatcat-ca59441dab7bd99645c98c03dceb314c5d9fae5d.tar.gz
fatcat-ca59441dab7bd99645c98c03dceb314c5d9fae5d.zip
small UI tweaks for editgroups/account
Diffstat (limited to 'python/fatcat_web/templates/editor_editgroups.html')
-rw-r--r--python/fatcat_web/templates/editor_editgroups.html10
1 files changed, 7 insertions, 3 deletions
diff --git a/python/fatcat_web/templates/editor_editgroups.html b/python/fatcat_web/templates/editor_editgroups.html
index abfd9772..3c3dd20d 100644
--- a/python/fatcat_web/templates/editor_editgroups.html
+++ b/python/fatcat_web/templates/editor_editgroups.html
@@ -19,13 +19,17 @@
{% for editgroup in editgroups %}
<tr>{# <td>{{ editgroup.created.strftime("%Y-%m-%d %H:%M:%S") }} #}
<td>{% if editgroup.changelog_index %}
- Merged<br>(<a href="/changelog/{{ editgroup.changelog_index }}">#{{ editgroup.changelog_index }}</a>)
+ Merged
+ <br><a href="/changelog/{{ editgroup.changelog_index }}">#{{ editgroup.changelog_index }}</a>
{% elif editgroup.submitted %}
- Submitted<br>({{ editgroup.submitted.strftime("%Y-%m-%d %H:%M:%S") }})
+ Submitted
+ <br>{{ editgroup.submitted.strftime("%Y-%m-%d %H:%M:%S") }}
{% else %}
Work in Progress
{% endif %}
- <td><code><a href="/editgroup/{{ editgroup.editgroup_id }}">{{ editgroup.editgroup_id }}</a></code>
+ <td><small><code><a href="/editgroup/{{ editgroup.editgroup_id }}">
+ {{ editgroup.editgroup_id }}
+ </a></code></small>
<td>{% if editgroup.description != None %}{{ editgroup.description }}{% endif %}
{% endfor %}
</table>