aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-04-02 16:01:52 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-04-02 16:01:52 -0700
commitade12bb9f4dcac5de032f8349f02c32241477e0f (patch)
tree2e74cd96446719cd2c2c250d890ec61d657f72d0
parent4bbdfce35d6682cac197961c13ea82bb66658d8b (diff)
downloadfatcat-ade12bb9f4dcac5de032f8349f02c32241477e0f.tar.gz
fatcat-ade12bb9f4dcac5de032f8349f02c32241477e0f.zip
fix wikidata_qid-exclusive formatting
-rw-r--r--python/fatcat_web/templates/container_view.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html
index 1e9a524b..3d0627ca 100644
--- a/python/fatcat_web/templates/container_view.html
+++ b/python/fatcat_web/templates/container_view.html
@@ -68,9 +68,10 @@
{% if container.extra != None and container.extra.ISSNe != None and (container.extra.ISSNe|length > 0) %}
<br><i class="icon plug"></i>Electronic: &nbsp;<code>{{ container.extra.ISSNe }}</code>
{% endif %}
+ <br>
{% endif %}
{% if container.wikidata_qid != None %}
- <br><b>Wikidata:</b> &nbsp;<a href="https://wikidata.org/wiki/{{ container.wikidata_qid }}"><code>{{ container.wikidata_qid }}</code></a>
+ <b>Wikidata</b> &nbsp;<a href="https://wikidata.org/wiki/{{ container.wikidata_qid }}"><code>{{ container.wikidata_qid }}</code></a>
{% endif %}
</div><div class="ui segment attached">
{% endif %}