aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/entity_macros.html
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat_web/templates/entity_macros.html')
-rw-r--r--python/fatcat_web/templates/entity_macros.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/entity_macros.html b/python/fatcat_web/templates/entity_macros.html
index 2a4752f2..0fa93679 100644
--- a/python/fatcat_web/templates/entity_macros.html
+++ b/python/fatcat_web/templates/entity_macros.html
@@ -2,8 +2,11 @@
{% macro fatcat_bits(entity, entity_type, expand="") -%}
<div class="ui segment attached">
<b>Fatcat Bits</b>
- <p>State is "{{ entity.state }}". Revision:
- <br><small><code>{{ entity.revision }}</code></small>
+ <p>State is "{{ entity.state }}".
+ {% if entity.state != "deleted" %}
+ Revision:
+ <br><small><code>{{ entity.revision }}</code></small>
+ {% endif %}
<br><a href="https://api.{{ config.FATCAT_DOMAIN }}/v0/release/{{ entity.ident }}{% if expand %}?expand={{ expand}}{% endif %}">As JSON object via API</a>
</div>