2020-12-13 02:25:04 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2021-03-01 01:10:30 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2020-11-12 19:40:20 +00:00
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% if full %}
|
2021-01-31 16:41:11 +00:00
|
|
|
{% with full|to_markdown|safe as full %}
|
2020-11-12 19:40:20 +00:00
|
|
|
|
2021-01-19 01:54:36 +00:00
|
|
|
{% with full|to_markdown|safe|truncatewords_html:60 as trimmed %}
|
2020-11-12 19:40:20 +00:00
|
|
|
{% if trimmed != full %}
|
2021-01-17 18:38:34 +00:00
|
|
|
<div id="hide-full-{{ uuid }}">
|
2021-03-03 19:10:09 +00:00
|
|
|
<div class="content" id="trimmed-{{ uuid }}">
|
|
|
|
<p dir="auto">{{ trimmed }}</p>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{% trans "Show more" as button_text %}
|
|
|
|
{% include 'snippets/toggle/open_button.html' with text=button_text controls_text="full" controls_uid=uuid class="is-small" %}
|
|
|
|
</div>
|
2021-01-31 16:41:11 +00:00
|
|
|
</div>
|
2020-11-12 19:40:20 +00:00
|
|
|
</div>
|
2021-01-17 18:38:34 +00:00
|
|
|
<div id="full-{{ uuid }}" class="hidden">
|
2021-03-03 19:10:09 +00:00
|
|
|
<div class="content">
|
|
|
|
<div dir="auto">{{ full }}</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{% trans "Show less" as button_text %}
|
|
|
|
{% include 'snippets/toggle/close_button.html' with text=button_text controls_text="full" controls_uid=uuid class="is-small" %}
|
|
|
|
</div>
|
2021-01-31 16:41:11 +00:00
|
|
|
</div>
|
2020-11-12 19:40:20 +00:00
|
|
|
</div>
|
|
|
|
{% else %}
|
2021-03-03 19:10:09 +00:00
|
|
|
<div class="content">
|
|
|
|
<div dir="auto">{{ full }}</div>
|
|
|
|
</div>
|
2020-11-12 19:40:20 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2021-01-31 16:41:11 +00:00
|
|
|
{% endwith %}
|
2020-11-12 19:40:20 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|