浏览代码

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 %}

正在加载...
取消
保存