diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-07 19:51:56 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-09 17:35:50 -0800 |
commit | fa1ad78cd0e00f524221f972889ee32373d7b94e (patch) | |
tree | 96c71abf61be74dcf0d874887b6cb321070c1a2d /python/fatcat_web/templates/container_view.html | |
parent | 575826cf460ac47e6af40173d5d40e26eb8cf45f (diff) | |
download | fatcat-fa1ad78cd0e00f524221f972889ee32373d7b94e.tar.gz fatcat-fa1ad78cd0e00f524221f972889ee32373d7b94e.zip |
container: scholars portal kbart link; unknown type display
Diffstat (limited to 'python/fatcat_web/templates/container_view.html')
-rw-r--r-- | python/fatcat_web/templates/container_view.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/container_view.html b/python/fatcat_web/templates/container_view.html index c5f68367..d88b44ab 100644 --- a/python/fatcat_web/templates/container_view.html +++ b/python/fatcat_web/templates/container_view.html @@ -76,7 +76,7 @@ <tr> <td class="three wide"> {% if type_row == "_unknown" %} - <i>Unknown</i> + <i>unknown-type</i> {% else %} <code>{{ type_row }}</code> {% endif %} @@ -158,6 +158,8 @@ <a href="https://catalog.hathitrust.org/Search/Home?lookfor={{ container.issnl }}&searchtype=isn&ft=&setft=false">HathiTrust</a>: {% elif k == "portico" and container.issnl %} <a href="https://www.portico.org/coverage/titles/?keyword={{ container.issnl }}">Portico</a>: + {% elif k == "scholarsportal" and container.issnl %} + <a href="https://journals.scholarsportal.info/search?q={{ container.issnl }}&search_in=ISSN">Scholars Portal</a>: {% else %} <span style="text-transform: uppercase;">{{ k }}:</span> {% endif %} |