2020-03-15 21:15:36 +00:00
|
|
|
{% load humanize %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2021-05-11 21:41:28 +00:00
|
|
|
{% load utilities %}
|
2020-03-15 21:15:36 +00:00
|
|
|
|
2021-04-03 20:06:36 +00:00
|
|
|
{% with status_type=request.GET.status_type %}
|
2021-02-28 18:04:04 +00:00
|
|
|
<div class="tab-group">
|
2021-02-27 15:47:03 +00:00
|
|
|
<div class="tabs is-boxed" role="tablist">
|
|
|
|
<ul>
|
2021-04-03 20:06:36 +00:00
|
|
|
<li class="{% if status_type == 'review' or not status_type %}is-active{% endif %}">
|
|
|
|
<a
|
|
|
|
href="{{ request.path }}?status_type=review&book={{ book.id }}"
|
|
|
|
id="tab-review-{{ book.id }}"
|
|
|
|
role="tab"
|
|
|
|
aria-selected="{% if status_type == 'review' or not status_type %}true{% else %}false{% endif %}"
|
|
|
|
aria-controls="review-{{ book.id }}"
|
|
|
|
data-category="tab-option-{{ book.id }}">
|
|
|
|
{% trans "Review" %}
|
|
|
|
</a>
|
2021-02-27 15:47:03 +00:00
|
|
|
</li>
|
2021-04-03 20:06:36 +00:00
|
|
|
<li class="{% if status_type == 'comment' %}is-active{% endif %}">
|
|
|
|
<a
|
|
|
|
href="{{ request.path }}?status_type=comment&book={{ book.id}}"
|
|
|
|
id="tab-comment-{{ book.id }}"
|
|
|
|
role="tab"
|
|
|
|
aria-selected="{% if status_type == 'comment' %}true{% else %}false{% endif %}"
|
|
|
|
aria-controls="comment-{{ book.id}}"
|
|
|
|
data-category="tab-option-{{ book.id }}">
|
|
|
|
{% trans "Comment" %}
|
|
|
|
</a>
|
2021-02-27 15:47:03 +00:00
|
|
|
</li>
|
2021-04-03 20:06:36 +00:00
|
|
|
<li class="{% if status_type == 'quote' %}is-active{% endif %}">
|
|
|
|
<a
|
|
|
|
href="{{ request.path }}?status_type=quote&book={{ book.id }}"
|
|
|
|
id="tab-quote-{{ book.id }}"
|
|
|
|
role="tab"
|
|
|
|
aria-selected="{% if status_type == 'quote' %}true{% else %}false{% endif %}"
|
|
|
|
aria-controls="quote-{{ book.id }}"
|
|
|
|
data-category="tab-option-{{ book.id }}">
|
|
|
|
{% trans "Quote" %}
|
|
|
|
</a>
|
2021-02-27 15:47:03 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2020-09-30 00:43:30 +00:00
|
|
|
|
2021-04-03 20:06:36 +00:00
|
|
|
<div class="tab-option-{{ book.id }}" id="review-{{ book.id }}" role="tabpanel" aria-labelledby="tab-review-{{ book.id }}" {% if status_type and status_type != "review" %}hidden{% endif %}>
|
2021-02-27 15:47:03 +00:00
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% include 'snippets/create_status_form.html' with type='review' %}
|
|
|
|
{% endwith %}
|
|
|
|
</div>
|
2020-03-21 23:50:49 +00:00
|
|
|
|
2021-04-03 20:06:36 +00:00
|
|
|
<div class="tab-option-{{ book.id }}" id="comment-{{ book.id }}" role="tabpanel" aria-labelledby="tab-comment-{{ book.id }}" {% if status_type != "comment" %}hidden{% endif %}>
|
2021-02-27 15:47:03 +00:00
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% include 'snippets/create_status_form.html' with type="comment" placeholder="Some thoughts on '"|add:book.title|add:"'" %}
|
|
|
|
{% endwith %}
|
|
|
|
</div>
|
2020-04-08 16:40:47 +00:00
|
|
|
|
2021-04-03 20:06:36 +00:00
|
|
|
<div class="tab-option-{{ book.id }}" id="quote-{{ book.id }}" role="tabpanel" aria-labelledby="tab-quote-{{ book.id }}" {% if status_type != "quote" %}hidden{% endif %}>
|
2021-02-27 15:47:03 +00:00
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% include 'snippets/create_status_form.html' with type="quotation" placeholder="An excerpt from '"|add:book.title|add:"'" %}
|
|
|
|
{% endwith %}
|
|
|
|
</div>
|
2021-02-28 18:04:04 +00:00
|
|
|
</div>
|
2021-04-03 20:06:36 +00:00
|
|
|
{% endwith %}
|