diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-02 16:01:52 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-04-02 16:01:52 -0700 |
commit | ade12bb9f4dcac5de032f8349f02c32241477e0f (patch) | |
tree | 2e74cd96446719cd2c2c250d890ec61d657f72d0 /python | |
parent | 4bbdfce35d6682cac197961c13ea82bb66658d8b (diff) | |
download | fatcat-ade12bb9f4dcac5de032f8349f02c32241477e0f.tar.gz fatcat-ade12bb9f4dcac5de032f8349f02c32241477e0f.zip |
fix wikidata_qid-exclusive formatting
Diffstat (limited to 'python')
-rw-r--r-- | python/fatcat_web/templates/container_view.html | 3 |
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: <code>{{ container.extra.ISSNe }}</code> {% endif %} + <br> {% endif %} {% if container.wikidata_qid != None %} - <br><b>Wikidata:</b> <a href="https://wikidata.org/wiki/{{ container.wikidata_qid }}"><code>{{ container.wikidata_qid }}</code></a> + <b>Wikidata</b> <a href="https://wikidata.org/wiki/{{ container.wikidata_qid }}"><code>{{ container.wikidata_qid }}</code></a> {% endif %} </div><div class="ui segment attached"> {% endif %} |