2020-03-15 21:15:36 +00:00
|
|
|
{% load humanize %}
|
2020-12-13 02:25:04 +00:00
|
|
|
{% load bookwyrm_tags %}
|
2020-03-15 21:15:36 +00:00
|
|
|
|
2020-11-06 19:54:31 +00:00
|
|
|
<div class="tabs is-boxed">
|
2020-11-09 02:23:12 +00:00
|
|
|
<ul role="tablist">
|
2021-01-18 04:19:09 +00:00
|
|
|
<li class="tab-change is-active" data-category="tab-option-{{ book.id }}" role="tab" aria-selected="true" tabindex="0" data-tab="review-{{ book.id }}">
|
|
|
|
<a>Review</a>
|
2020-11-06 19:54:31 +00:00
|
|
|
</li>
|
2021-01-18 04:19:09 +00:00
|
|
|
<li class="tab-change" data-category="tab-option-{{ book.id }}" role="tab" tabindex="0" data-tab="comment-{{ book.id}}">
|
|
|
|
<a>Comment</a>
|
2020-11-06 19:54:31 +00:00
|
|
|
</li>
|
2021-01-18 04:19:09 +00:00
|
|
|
<li class="tab-change" data-category="tab-option-{{ book.id }}" role="tab" tabindex="0" data-tab="quote-{{ book.id }}">
|
|
|
|
<a>Quote</a>
|
2020-11-06 19:54:31 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2020-09-30 00:43:30 +00:00
|
|
|
|
2021-01-18 04:19:09 +00:00
|
|
|
<div class="tab-option-{{ book.id }}" id="review-{{ book.id }}">
|
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% include 'snippets/create_status_form.html' with type='review' %}
|
|
|
|
{% endwith %}
|
2020-11-06 19:54:31 +00:00
|
|
|
</div>
|
2020-03-21 23:50:49 +00:00
|
|
|
|
2021-01-18 04:19:09 +00:00
|
|
|
<div class="hidden tab-option-{{ book.id }}" id="comment-{{ book.id }}">
|
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% include 'snippets/create_status_form.html' with type="comment" placeholder="Some thoughts on '"|add:book.title|add:"'" %}
|
|
|
|
{% endwith %}
|
2020-11-06 19:54:31 +00:00
|
|
|
</div>
|
2020-04-08 16:40:47 +00:00
|
|
|
|
2021-01-18 04:19:09 +00:00
|
|
|
<div class="hidden tab-option-{{ book.id }}" id="quote-{{ book.id }}">
|
|
|
|
{% with 0|uuid as uuid %}
|
|
|
|
{% include 'snippets/create_status_form.html' with type="quotation" placeholder="An excerpt from '"|add:book.title|add:"'" %}
|
|
|
|
{% endwith %}
|
2020-03-15 21:15:36 +00:00
|
|
|
</div>
|