aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/work_view.html
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_web/templates/work_view.html')
-rw-r--r--python/fatcat_web/templates/work_view.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/fatcat_web/templates/work_view.html b/python/fatcat_web/templates/work_view.html
index 507498c8..aa32ba39 100644
--- a/python/fatcat_web/templates/work_view.html
+++ b/python/fatcat_web/templates/work_view.html
@@ -1,4 +1,4 @@
-{% set entity = work %}
+{% set work = entity %}
{% import "entity_macros.html" as entity_macros %}
{% extends "base.html" %}
@@ -22,8 +22,8 @@
{% endif %}
<h3>Releases</h3>
-{% if releases != [] %}
- {{ entity_macros.release_list(releases) }}
+{% if work._releases != [] and work._releases != None %}
+ {{ entity_macros.release_list(work._releases) }}
{% else %}
<p>There are no known releases associated with this work.
{% endif %}
@@ -42,7 +42,7 @@ reference the same underlying "work".
<div class="five wide column">
-{{ entity_macros.fatcat_bits(entity, "work", "") }}
+{{ entity_macros.fatcat_bits(entity, "work", "", editgroup) }}
</div>
</div>