forked from mirrors/bookwyrm
Fixes testing if authors are present
This commit is contained in:
parent
8d23f1d356
commit
3d394f96bf
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@
|
|||
</p>
|
||||
{% endif %}
|
||||
|
||||
{% if book.authors %}
|
||||
{% if book.authors.exists %}
|
||||
<div class="subtitle">
|
||||
{% trans "by" %} {% include 'snippets/authors.html' with book=book %}
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{% load utilities %}
|
||||
{% spaceless %}
|
||||
|
||||
{% if book.authors %}
|
||||
{% if book.authors.exists %}
|
||||
{% blocktrans trimmed with path=book.local_path title=book|book_title %}
|
||||
<a href="{{ path }}">{{ title }}</a> by
|
||||
{% endblocktrans %}
|
||||
|
|
Loading…
Reference in a new issue