forked from mirrors/bookwyrm
24 lines
998 B
HTML
24 lines
998 B
HTML
{% load fr_display %}
|
|
{% with book.id|uuid as uuid %}
|
|
{% with book|book_description as full %}
|
|
{% if full %}
|
|
{% with full|text_overflow as trimmed %}
|
|
{% if trimmed != full %}
|
|
<div>
|
|
<input type="radio" name="show-hide-{{ book.id }}-{{ uuid }}" id="show-{{ book.id }}-{{ uuid }}" class="toggle-control" checked>
|
|
<blockquote class="content toggle-content hidden">{{ trimmed }}
|
|
<label class="button is-small" for="hide-{{ book.id }}-{{ uuid }}">show more</label></blockquote>
|
|
</div>
|
|
<div>
|
|
<input type="radio" name="show-hide-{{ book.id }}-{{ uuid }}" id="hide-{{ book.id }}-{{ uuid }}" class="toggle-control">
|
|
<blockquote class="content toggle-content hidden">{{ full }}
|
|
<label class="button is-small" for="show-{{ book.id }}-{{ uuid }}">show less</label></blockquote>
|
|
</div>
|
|
{% else %}
|
|
<blockquote class="content">{{ full }}
|
|
</blockquote>
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
{% endwith %}
|