diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-22 15:10:32 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-05-22 15:10:32 -0700 |
commit | c0cdd850ecc702dff858831ba88d15d824093649 (patch) | |
tree | 413f91844e261759002f2cd54c32bcd750720dfd /python/fatcat_web | |
parent | 6c218d3b3d4d0c9eca9e5d4f7145d9654a95954a (diff) | |
download | fatcat-c0cdd850ecc702dff858831ba88d15d824093649.tar.gz fatcat-c0cdd850ecc702dff858831ba88d15d824093649.zip |
show arixv, jstor, pubmed extra metadata in depth
Diffstat (limited to 'python/fatcat_web')
-rw-r--r-- | python/fatcat_web/templates/entity_macros.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/entity_macros.html b/python/fatcat_web/templates/entity_macros.html index f775116f..b3819e0f 100644 --- a/python/fatcat_web/templates/entity_macros.html +++ b/python/fatcat_web/templates/entity_macros.html @@ -29,7 +29,7 @@ <table class="ui definition single line fixed compact small unstackable table"> <tbody> {% for (key, value) in extra.items() %} - {% if key in ("ia", "crossref", "kbart") and value is mapping and value %} + {% if key in ("ia", "crossref", "kbart", "arxiv", "jstor", "pubmed") and value is mapping and value %} {% for (inner_key, inner_value) in value.items() %} <tr><td class="three wide right aligned"><code>{{ key }}.{{ inner_key }}</code></td> <td class="seven wide"><code>{{ inner_value }}</code> |