diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/fatcat_web/templates/container_view.html | 10 | 
1 files changed, 8 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html index 138c943e..c5f68367 100644 --- a/python/fatcat_web/templates/container_view.html +++ b/python/fatcat_web/templates/container_view.html @@ -88,10 +88,16 @@  {% endif %}  {% endif %} +{% if container.container_type != None or container.publication_status != None %}  <div class="ui segment attached"> -  <b>Type</b>  <code>{{ container.container_type or 'unknown' }}</code><br> -  <b>Status</b>  <code>{{ container.publication_status or 'unknown' }}</code><br> +  {% if container.container_type != None %} +    <b>Publication Type</b>  <code>{{ container.container_type or 'unknown' }}</code><br> +  {% endif %} +  {% if container.publication_status != None %} +    <b>Publication Status</b>  <code>{{ container.publication_status or 'unknown' }}</code><br> +  {% endif %}  </div> +{% endif %}  {% if container.issnl != None or container.issne != None or container.issnp != None or container.wikidata_qid != None %}  <div class="ui segment attached">  | 
