diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-28 13:20:34 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-09-28 13:20:34 -0700 |
commit | 9e13c0c403c5d4b650f0dbaf11783733cfb4593b (patch) | |
tree | f14e8f4506365505d577ea11e0de80c266cd73d8 /python | |
parent | 181c81003ccc3dbd8b0e804ba048354c7cca3d69 (diff) | |
download | fatcat-9e13c0c403c5d4b650f0dbaf11783733cfb4593b.tar.gz fatcat-9e13c0c403c5d4b650f0dbaf11783733cfb4593b.zip |
more special crossref
Diffstat (limited to 'python')
-rw-r--r-- | python/fatcat/templates/release_view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat/templates/release_view.html b/python/fatcat/templates/release_view.html index a203a841..aad90718 100644 --- a/python/fatcat/templates/release_view.html +++ b/python/fatcat/templates/release_view.html @@ -67,7 +67,7 @@ formal publications, etc) linked to the same work. {% if release.extra != None %} <h3>Extra Metadata (raw JSON)</h3> {% for (key, value) in release.extra.items() %} -<code><b>{{ key }}:</b> {% if key == "crossref" %} {{ value[:50] }}... {% else %} {{ value }} {% endif %}</code><br> +<code><b>{{ key }}:</b> {% if key == "crossref" %} <truncated, see full JSON>{% else %} {{ value }} {% endif %}</code><br> {% endfor %} {% endif %} |