diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-12-09 15:46:21 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-12-09 15:50:38 -0800 |
commit | 3c18f8c73efc825a68d734c03907a3747f148b82 (patch) | |
tree | c9538807099c02d17fa894228ea8e189b84d0e23 /python/fatcat_web | |
parent | f02aaf796fbe1ac6d9d03044b10356eba4b8a544 (diff) | |
download | fatcat-3c18f8c73efc825a68d734c03907a3747f148b82.tar.gz fatcat-3c18f8c73efc825a68d734c03907a3747f148b82.zip |
fix delete release history view
This was causing 5xx errors in production and qa. Eg, at:
https://qa.fatcat.wiki/release/aaaaaaaaaaaaarceaaaaaaaaai/history
Diffstat (limited to 'python/fatcat_web')
-rw-r--r-- | python/fatcat_web/templates/entity_base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/entity_base.html b/python/fatcat_web/templates/entity_base.html index 48f51ec6..437bc071 100644 --- a/python/fatcat_web/templates/entity_base.html +++ b/python/fatcat_web/templates/entity_base.html @@ -80,7 +80,7 @@ {{ entity_tab("overview", "Overview", "") }} {% if entity_type == "container" and entity.state == 'active' and not editgroup %} {{ entity_tab("coverage", "Coverage", "/coverage") }} - {% elif entity_type == "release" %} + {% elif entity_type == "release" and entity.state != 'deleted' %} {{ entity_tab("contribs", "Authors", "/contribs", entity._authors|count ) }} {{ entity_tab("references", "References", "/references", entity.refs|count) }} {% endif %} |