aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-06-11 12:13:35 -0700
committerBryan Newbold <bnewbold@robocracy.org>2019-06-13 14:36:59 -0700
commit3c2fd616fa5da49495f1236f224d032836bfb0b3 (patch)
tree96bc204cbc9cde871edc75a40101b72776f59773
parent12c3709cf29400f470188976f9428cbf54da9e56 (diff)
downloadfatcat-3c2fd616fa5da49495f1236f224d032836bfb0b3.tar.gz
fatcat-3c2fd616fa5da49495f1236f224d032836bfb0b3.zip
release search: link direct to container, not issnl lookup
-rw-r--r--python/fatcat_web/templates/release_search.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/fatcat_web/templates/release_search.html b/python/fatcat_web/templates/release_search.html
index cbd44862..f7840a28 100644
--- a/python/fatcat_web/templates/release_search.html
+++ b/python/fatcat_web/templates/release_search.html
@@ -74,8 +74,8 @@
<span class="ui red label small">unknown</span>
{% endif %}
{% if paper.container_name %}
- {% if paper.container_issnl %}
- <a href="/container/lookup?issnl={{ paper.container_issnl}}" style="color: black;">{{ paper.container_name }}</a>
+ {% if paper.container_id %}
+ <a href="/container/{{ paper.container_id }}" style="color: black;">{{ paper.container_name }}</a>
{% else %}
{{ paper.container_name }}
{% endif %}