aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/entity_history.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-01-31 17:31:24 -0800
committerBryan Newbold <bnewbold@robocracy.org>2019-02-01 11:41:07 -0800
commit05f985e83a9d6bfeb05b94e7ea058bb1dc360249 (patch)
tree1a9c7dc841871a76f2b2b6c149acb95a930bb8a0 /python/fatcat_web/templates/entity_history.html
parenta24e3a67987e7a070eca562ce1cf30a59c206e06 (diff)
downloadfatcat-05f985e83a9d6bfeb05b94e7ea058bb1dc360249.tar.gz
fatcat-05f985e83a9d6bfeb05b94e7ea058bb1dc360249.zip
fix editgroup_id references
Diffstat (limited to 'python/fatcat_web/templates/entity_history.html')
-rw-r--r--python/fatcat_web/templates/entity_history.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/entity_history.html b/python/fatcat_web/templates/entity_history.html
index 54577b2f..57818179 100644
--- a/python/fatcat_web/templates/entity_history.html
+++ b/python/fatcat_web/templates/entity_history.html
@@ -21,7 +21,7 @@
{% for entry in history %}
<tr><td><a href="/changelog/{{ entry.changelog_entry.index }}">{{ entry.changelog_entry.index }}</a>
<td>{{ entry.changelog_entry.timestamp }}
- <td><a href="/editgroup/{{ entry.editgroup.id }}">{{ entry.editgroup.id }}</a>
+ <td><a href="/editgroup/{{ entry.editgroup.editgroup_id }}">{{ entry.editgroup.editgroup_id }}</a>
<td><a href="/editor/{{ entry.editgroup.editor_id }}">{{ entry.editgroup.editor_id }}</a>
<td>{% if entry.editgroup.description != None %}{{ entry.editgroup.description }}{% endif %}
{% endfor %}