2020-12-13 02:25:04 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2020-11-12 19:40:20 +00:00
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% if full %}
|
|
|
|
|
2020-12-13 03:34:33 +00:00
|
|
|
{% with full|truncatewords_html:60 as trimmed %}
|
2020-11-12 19:40:20 +00:00
|
|
|
{% if trimmed != full %}
|
|
|
|
<div>
|
|
|
|
<input type="radio" name="show-hide-{{ uuid }}" id="show-{{ uuid }}" class="toggle-control" checked>
|
2021-01-06 19:59:59 +00:00
|
|
|
<blockquote class="content toggle-content hidden"><span dir="auto">{{ trimmed | to_markdown | safe }}</span>
|
2021-01-14 21:02:50 +00:00
|
|
|
{% include 'snippets/toggle/toggle_button.html' with text="show more" controls_text="hide" controls_uid=uuid class="has-text-link is-clickable" %}
|
2020-11-12 19:40:20 +00:00
|
|
|
</blockquote>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<input type="radio" name="show-hide-{{ uuid }}" id="hide-{{ uuid }}" class="toggle-control">
|
2021-01-06 19:59:59 +00:00
|
|
|
<blockquote class="content toggle-content hidden"><span dir="auto">{{ full | to_markdown | safe }}</span>
|
2021-01-14 21:02:50 +00:00
|
|
|
{% include 'snippets/toggle/toggle_button.html' with text="show less" controls_text="show" controls_uid=uuid class="has-text-link is-clickable" %}
|
2020-11-12 19:40:20 +00:00
|
|
|
</blockquote>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
2021-01-06 19:59:59 +00:00
|
|
|
<blockquote class="content"><span dir="auto">{{ full | to_markdown | safe }}</span></blockquote>
|
2020-11-12 19:40:20 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|