bookwyrm-mastodon/bookwyrm/templates/snippets/book_titleby.html

21 lines
532 B
HTML
Raw Normal View History

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