diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-26 23:26:08 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-04-26 23:26:08 -0700 |
commit | 4626b14555c0f190bb5b9c521cfdbc14ad8e3f86 (patch) | |
tree | b293ada4e0ae3ab6432ef1b9e803891d04f2aeeb | |
parent | 6bae5bd14dfafcee00382d97c8cbc56e75900bac (diff) | |
download | fatcat-4626b14555c0f190bb5b9c521cfdbc14ad8e3f86.tar.gz fatcat-4626b14555c0f190bb5b9c521cfdbc14ad8e3f86.zip |
fix editgroup links
-rw-r--r-- | fatcat/templates/editor_changelog.html | 2 | ||||
-rw-r--r-- | fatcat/templates/release_changelog.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fatcat/templates/editor_changelog.html b/fatcat/templates/editor_changelog.html index 5d87d82e..e1410874 100644 --- a/fatcat/templates/editor_changelog.html +++ b/fatcat/templates/editor_changelog.html @@ -8,7 +8,7 @@ <p>Changes accepted (aka, merged editgroups): <ul> {% for entry in changelog_entries %} - <li><a href="/editgroup/{{ entry.edit_group }}">Edit Group #{{ entry.edit_group }}</a> (on {{ entry.timestamp }}) + <li><a href="/editgroup/{{ entry.editgroup }}">Edit Group #{{ entry.editgroup }}</a> (on {{ entry.timestamp }}) {% else %} NONE {% endfor %} diff --git a/fatcat/templates/release_changelog.html b/fatcat/templates/release_changelog.html index 47526749..706a5642 100644 --- a/fatcat/templates/release_changelog.html +++ b/fatcat/templates/release_changelog.html @@ -8,7 +8,7 @@ <p>Changelog: <ul> {% for entry in changelog_entries %} - <li><a href="/editgroup/{{ entry.edit_group }}">Edit Group #{{ entry.edit_group }}</a> (on {{ entry.timestamp }}) + <li><a href="/editgroup/{{ entry.editgroup }}">Edit Group #{{ entry.editgroup }}</a> (on {{ entry.timestamp }}) {% else %} NONE {% endfor %} |