Explorar el Código

added detection for multiple authors

practices
Simon Bowie hace 1 año
padre
commit
33a452db93
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. +7
    -1
      web/app/templates/book.html

+ 7
- 1
web/app/templates/book.html Ver fichero

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

Cargando…
Cancelar
Guardar