Changes orientation of move book menu on shelf page

This commit is contained in:
Mouse Reeve 2021-04-01 19:33:46 -07:00
parent 642c41353e
commit 97192d3296
1 changed files with 2 additions and 0 deletions

View File

@ -111,12 +111,14 @@
{% endif %} {% endif %}
{% if shelf.user == request.user %} {% if shelf.user == request.user %}
<td> <td>
{% with right=True %}
{% if not shelf.id %} {% if not shelf.id %}
{% active_shelf book as current %} {% active_shelf book as current %}
{% include 'snippets/shelf_selector.html' with current=current.shelf class="is-small" %} {% include 'snippets/shelf_selector.html' with current=current.shelf class="is-small" %}
{% else %} {% else %}
{% include 'snippets/shelf_selector.html' with current=shelf class="is-small" %} {% include 'snippets/shelf_selector.html' with current=shelf class="is-small" %}
{% endif %} {% endif %}
{% endwith %}
</td> </td>
{% endif %} {% endif %}
</tr> </tr>