diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-10-13 16:46:02 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-10-13 16:46:02 -0700 |
commit | 316b25455a6fc96023ac8457ec53fad3777d79af (patch) | |
tree | f32821df52f46792d3c8ca9d8c5916911529c32e /python/fatcat_web/templates/container_view.html | |
parent | b77692ccb27a5b8f4a172939caec6ecd79eaff25 (diff) | |
download | fatcat-316b25455a6fc96023ac8457ec53fad3777d79af.tar.gz fatcat-316b25455a6fc96023ac8457ec53fad3777d79af.zip |
web: container lookup and display features
Diffstat (limited to 'python/fatcat_web/templates/container_view.html')
-rw-r--r-- | python/fatcat_web/templates/container_view.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html index ddad07ae..e1c49197 100644 --- a/python/fatcat_web/templates/container_view.html +++ b/python/fatcat_web/templates/container_view.html @@ -89,8 +89,8 @@ {% endif %} <div class="ui segment attached"> - <b>Type</b> {{ container.container_type or 'Unknown' }} - <b>Status</b> {{ container.publication_status or 'Unknown' }} + <b>Type</b> <code>{{ container.container_type or 'unknown' }}</code><br> + <b>Status</b> <code>{{ container.publication_status or 'Unknown' }}</code><br> </div> {% if container.issnl != None or container.issne != None or container.issnp != None or container.wikidata_qid != None %} |