bookwyrm/bookwyrm/templates/snippets/book_titleby.html

24 lines
587 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 %}
2022-02-18 02:59:35 +00:00
{% get_current_language as LANGUAGE_CODE %}
2022-12-26 16:52:58 +00:00
{# 10 second cache #}
{% cache 10 titleby LANGUAGE_CODE 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>
2024-01-27 17:58:57 +00:00
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
{% include 'snippets/book_series.html' with book=book %}
2024-01-27 17:58:57 +00:00
2022-01-05 22:33:10 +00:00
{% endcache %}
2021-08-04 19:36:54 +00:00
{% endspaceless %}