2020-12-12 21:25:04 -05:00
|
|
|
{% load bookwyrm_tags %}
|
2020-11-12 14:40:20 -05:00
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% if full %}
|
2021-01-31 11:41:11 -05:00
|
|
|
{% with full|to_markdown|safe as full %}
|
2020-11-12 14:40:20 -05:00
|
|
|
|
2021-01-18 20:54:36 -05:00
|
|
|
{% with full|to_markdown|safe|truncatewords_html:60 as trimmed %}
|
2020-11-12 14:40:20 -05:00
|
|
|
{% if trimmed != full %}
|
2021-01-17 13:38:34 -05:00
|
|
|
<div id="hide-full-{{ uuid }}">
|
2021-01-31 11:41:11 -05:00
|
|
|
<div class="content" id="trimmed-{{ uuid }}"><span dir="auto">{{ trimmed }}</span>
|
2021-01-17 13:38:34 -05:00
|
|
|
{% include 'snippets/toggle/open_button.html' with text="show more" controls_text="full" controls_uid=uuid class="is-small" %}
|
2021-01-31 11:41:11 -05:00
|
|
|
</div>
|
2020-11-12 14:40:20 -05:00
|
|
|
</div>
|
2021-01-17 13:38:34 -05:00
|
|
|
<div id="full-{{ uuid }}" class="hidden">
|
2021-01-31 11:41:11 -05:00
|
|
|
<div class="content"><span dir="auto">{{ full }}</span>
|
2021-01-17 13:38:34 -05:00
|
|
|
{% include 'snippets/toggle/close_button.html' with text="show less" controls_text="full" controls_uid=uuid class="is-small" %}
|
2021-01-31 11:41:11 -05:00
|
|
|
</div>
|
2020-11-12 14:40:20 -05:00
|
|
|
</div>
|
|
|
|
{% else %}
|
2021-01-31 11:41:11 -05:00
|
|
|
<div class="content"><span dir="auto">{{ full }}</span></div>
|
2020-11-12 14:40:20 -05:00
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2021-01-31 11:41:11 -05:00
|
|
|
{% endwith %}
|
2020-11-12 14:40:20 -05:00
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|