2020-03-15 21:15:36 +00:00
|
|
|
{% load humanize %}
|
2021-02-28 02:48:10 +00:00
|
|
|
{% load i18n %}
|
2020-12-13 02:25:04 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2020-03-15 21:15:36 +00:00
|
|
|
|
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>
|
|
|
|
<li class="is-active">
|
2021-02-28 16:39:56 +00:00
|
|
|
<a href="#review-{{ book.id }}" id="tab-review-{{ book.id }}" role="tab" aria-selected="true" aria-controls="review-{{ book.id }}" data-category="tab-option-{{ book.id }}">{% trans "Review" %}</a>
|
2021-02-27 15:47:03 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
2021-02-28 18:04:04 +00:00
|
|
|
<a href="#comment-{{ book.id}}" id="tab-comment-{{ book.id }}" role="tab" aria-selected="false" aria-controls="comment-{{ book.id}}" data-category="tab-option-{{ book.id }}">{% trans "Comment" %}</a>
|
2021-02-27 15:47:03 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
2021-02-28 18:04:04 +00:00
|
|
|
<a href="#quote-{{ book.id }}" id="tab-quote-{{ book.id }}" role="tab" aria-selected="false" 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-02-28 18:04:04 +00:00
|
|
|
<div class="tab-option-{{ book.id }}" id="review-{{ book.id }}" role="tabpanel" aria-labelledby="tab-review-{{ book.id }}">
|
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-02-27 15:47:03 +00:00
|
|
|
<div class="tab-option-{{ book.id }}" id="comment-{{ book.id }}" role="tabpanel" aria-labelledby="tab-comment-{{ book.id }}" hidden>
|
|
|
|
{% 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-02-27 15:47:03 +00:00
|
|
|
<div class="tab-option-{{ book.id }}" id="quote-{{ book.id }}" role="tabpanel" aria-labelledby="tab-quote-{{ book.id }}" hidden>
|
|
|
|
{% 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>
|