22 lines
738 B
HTML
22 lines
738 B
HTML
{% load i18n %}
|
|
{% if status.content_warning %}
|
|
|
|
{% trans "Content warning" as text %}
|
|
<span>
|
|
<span class="icon icon-warning is-size-5" title="{{ text }}">
|
|
<span class="is-sr-only">{{ text }}</span>
|
|
</span>
|
|
|
|
<a href="{{ status.local_path }}">
|
|
{{ status.content_warning }}
|
|
</a>
|
|
</span>
|
|
{% elif status.content %}
|
|
<a href="{{ status.local_path }}">
|
|
{{ status.content | safe | truncatewords_html:10 }}{% if status.mention_books %} <em>{{ status.mention_books.first.title }}</em>{% endif %}
|
|
</a>
|
|
{% elif status.quote %}
|
|
<a href="{{ status.local_path }}">{{ status.quote | safe | truncatewords_html:10 }}</a>
|
|
{% elif status.rating %}
|
|
{% include 'snippets/stars.html' with rating=status.rating %}
|
|
{% endif %}
|