moviewyrm/bookwyrm/templates/snippets/book_titleby.html

20 lines
474 B
HTML
Raw Normal View History

{% load i18n %}
2021-05-11 22:14:42 +00:00
{% load utilities %}
2022-01-05 22:33:10 +00:00
{% load cache %}
2021-08-04 19:36:54 +00:00
{% spaceless %}
{# 6 month cache #}
{% cache 15552000 titleby book.id %}
2021-08-04 19:36:54 +00:00
2021-09-02 15:48:53 +00:00
{% if book.authors.exists %}
2021-08-04 19:36:54 +00:00
{% blocktrans trimmed with path=book.local_path title=book|book_title %}
<a href="{{ path }}">{{ title }}</a> by
2021-11-15 19:41:29 +00:00
{% endblocktrans %}&nbsp;{% include 'snippets/authors.html' with book=book limit=3 %}
2021-08-04 19:36:54 +00:00
{% else %}
<a href="{{ book.local_path }}">{{ book|book_title }}</a>
2020-04-02 02:38:07 +00:00
{% endif %}
2022-01-05 22:33:10 +00:00
{% endcache %}
2021-08-04 19:36:54 +00:00
{% endspaceless %}