box around create status on feed page

This commit is contained in:
Mouse Reeve 2020-12-17 14:13:13 -08:00
parent 73f94a76d2
commit be43e0772c

View file

@ -44,11 +44,13 @@
<div> <div>
<input class="toggle-control" type="radio" name="recent-books" id="book-{{ book.id }}" {% if shelf_counter == 1 and forloop.first %}checked{% endif %}> <input class="toggle-control" type="radio" name="recent-books" id="book-{{ book.id }}" {% if shelf_counter == 1 and forloop.first %}checked{% endif %}>
<div class="toggle-content hidden" role="tabpanel" id="book-{{ book.id }}-panel"> <div class="toggle-content hidden" role="tabpanel" id="book-{{ book.id }}-panel">
<div class="block"> <div class="box">
{% include 'snippets/book_titleby.html' with book=book %} <div class="block">
{% include 'snippets/shelve_button.html' with book=book %} {% include 'snippets/book_titleby.html' with book=book %}
{% include 'snippets/shelve_button.html' with book=book %}
</div>
{% include 'snippets/create_status.html' with book=book %}
</div> </div>
{% include 'snippets/create_status.html' with book=book %}
</div> </div>
</div> </div>
{% endfor %} {% endfor %}