소스 검색

added detection for multiple authors

practices
Simon Bowie 1 년 전
부모
커밋
33a452db93
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      web/app/templates/book.html

+ 7
- 1
web/app/templates/book.html 파일 보기

@@ -92,7 +92,13 @@
{% endif %}
{% if resource['author'] %}
<div class="">
<h3>Author(s)</h3>
<h3>
{% if ' and ' in resource['author'] or ',' in resource['author'] %}
Authors
{% else %}
Author
{% endif %}
</h3>
<div class="">{{ resource['author'] }}</div>
</div>
{% endif %}

Loading…
취소
저장