aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2019-03-04 16:33:11 -0800
committerBryan Newbold <bnewbold@robocracy.org>2019-03-04 16:33:11 -0800
commitca3e9d6e99b9906d51c63e27e8e0dbd3b1816285 (patch)
tree5fcfbd0be422d616667994b5bbd0804997278af2
parent0afdc9c8aace30465b533cf98e07d259f7991f66 (diff)
downloadfatcat-ca3e9d6e99b9906d51c63e27e8e0dbd3b1816285.tar.gz
fatcat-ca3e9d6e99b9906d51c63e27e8e0dbd3b1816285.zip
bugfix search author results
-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 783f4dc4..0e00279c 100644
--- a/python/fatcat_web/templates/release_search.html
+++ b/python/fatcat_web/templates/release_search.html
@@ -27,8 +27,8 @@
&nbsp;&nbsp;<a href="{{ paper.best_pdf_url }}" class="ui label small"><i class="file icon"></i>fulltext</a>
{% endif %}
</h4>
- <h5 style="margin-top: 4px; margin-bottom: 4px; font-size: 1em;">{{ ", ".join(paper.contrib_names[:12] }}
- {% if paper.contrib_names|length > 12 %}(+{{ paper.contrib_names|length - 12 }} others){% endif %}
+ <h5 style="margin-top: 4px; margin-bottom: 4px; font-size: 1em;">{{ ", ".join(paper.contrib_names[:12]) }}
+ {% if paper.contrib_names|length > 12 %}<i>(+{{ paper.contrib_names|length - 12 }} others)</i>{% endif %}
</h5>
{% if paper.doi %}
DOI: <a href="https://doi.org/{{paper.doi }}" style="color: green;">{{ paper.doi }}</a>