diff options
-rw-r--r-- | python/fatcat_web/templates/release_search.html | 4 |
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 %} |