diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-01 17:23:27 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-03-01 17:23:27 -0800 |
commit | 31b20741e7b5b7588ba8d3b9a8f4e08dd87ff62d (patch) | |
tree | fb417390116be6c26c83ce71ef3b84675a9a5f42 | |
parent | 81bde8182006f86fcc9aab5f6c68f5730b6a8867 (diff) | |
download | fatcat-31b20741e7b5b7588ba8d3b9a8f4e08dd87ff62d.tar.gz fatcat-31b20741e7b5b7588ba8d3b9a8f4e08dd87ff62d.zip |
fix ISSN links from container search results
-rw-r--r-- | python/fatcat_web/templates/container_search.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/container_search.html b/python/fatcat_web/templates/container_search.html index 925fbc64..cdae5a46 100644 --- a/python/fatcat_web/templates/container_search.html +++ b/python/fatcat_web/templates/container_search.html @@ -26,7 +26,7 @@ <h5 style="margin-top: 4px; margin-bottom: 4px; font-size: 1em;">{{ entity.publisher }}</h5> {% endif %} {% if entity.issnl %} - <a href="https://issn.org/{{entity.issnl }}" style="color: green;">ISSN {{ entity.issnl }}</a> + <a href="https://portal.issn.org/resource/ISSN/{{entity.issnl }}" style="color: green;">ISSN {{ entity.issnl }}</a> {% endif %} {% if entity.container_type %} {{ entity.container_type }} |