From 97192d3296ca0a948dc5aebd57ec45fdbecd8e35 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 1 Apr 2021 19:33:46 -0700 Subject: [PATCH] Changes orientation of move book menu on shelf page --- bookwyrm/templates/user/shelf.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bookwyrm/templates/user/shelf.html b/bookwyrm/templates/user/shelf.html index d1de6e00..0732327b 100644 --- a/bookwyrm/templates/user/shelf.html +++ b/bookwyrm/templates/user/shelf.html @@ -111,12 +111,14 @@ {% endif %} {% if shelf.user == request.user %} + {% with right=True %} {% if not shelf.id %} {% active_shelf book as current %} {% include 'snippets/shelf_selector.html' with current=current.shelf class="is-small" %} {% else %} {% include 'snippets/shelf_selector.html' with current=shelf class="is-small" %} {% endif %} + {% endwith %} {% endif %}