return compose suggestion display to below shelves
This commit is contained in:
parent
030233fb1a
commit
4f5b81c6ba
2 changed files with 19 additions and 19 deletions
|
@ -16,16 +16,6 @@
|
|||
<label for="book-{{ book.id }}-radio">
|
||||
{% include 'snippets/book_cover.html' with book=book %}
|
||||
</label>
|
||||
<input name="book-{{ book.id }}" type="radio" id="book-{{ book.id }}-radio"></input>
|
||||
<div class="compose-suggestion" id="compose-book-{{ book.id }}">
|
||||
<label class="close icon icon-close" for="book-{{ book.id }}-radio-close" onclick="hide_element(this)">
|
||||
<span class="hidden-text">Close</span>
|
||||
</label>
|
||||
<input name="book-{{ book.id }}" type="radio" id="book-{{ book.id }}-radio-close"></input>
|
||||
<div class="content-container">
|
||||
{% include 'snippets/create_status.html' with book=book user=request.user %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% include 'snippets/shelve_button.html' with book=book %}
|
||||
</div>
|
||||
|
@ -38,5 +28,17 @@
|
|||
|
||||
{% for shelf in shelves %}
|
||||
{% for book in shelf.books %}
|
||||
{% endfor %}
|
||||
<div class="content-container compose-popout">
|
||||
<input name="book-popout" type="radio" id="book-{{ book.id }}-radio"></input>
|
||||
<div class="compose-suggestion" id="compose-book-{{ book.id }}">
|
||||
<label class="close icon icon-close" for="book-{{ book.id }}-radio-close" onclick="hide_element(this)">
|
||||
<span class="hidden-text">Close</span>
|
||||
</label>
|
||||
<input name="book-popout" type="radio" id="book-{{ book.id }}-radio-close"></input>
|
||||
<div class="content-container">
|
||||
{% include 'snippets/create_status.html' with book=book user=request.user %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue