diff --git a/bookwyrm/templates/shelf/shelf.html b/bookwyrm/templates/shelf/shelf.html index 06507d3e..ed926826 100644 --- a/bookwyrm/templates/shelf/shelf.html +++ b/bookwyrm/templates/shelf/shelf.html @@ -5,7 +5,7 @@ {% load i18n %} {% block title %} -{% include 'user/shelf/books_header.html' %} +{% include 'user/books_header.html' %} {% endblock %} {% block opengraph_images %} @@ -15,7 +15,7 @@ {% block content %}

- {% include 'user/shelf/books_header.html' %} + {% include 'user/books_header.html' %}

@@ -60,7 +60,7 @@
- {% include 'user/shelf/create_shelf_form.html' with controls_text='create_shelf_form' %} + {% include 'shelf/create_shelf_form.html' with controls_text='create_shelf_form' %}
@@ -98,7 +98,7 @@
- {% include 'user/shelf/edit_shelf_form.html' with controls_text="edit_shelf_form" %} + {% include 'shelf/edit_shelf_form.html' with controls_text="edit_shelf_form" %}
@@ -167,7 +167,7 @@ {% else %} -

{% trans "This shelf is empty." %}

+

{% trans "This shelf is empty." %}

{% if shelf.id and shelf.editable %}
{% csrf_token %} diff --git a/bookwyrm/views/shelf.py b/bookwyrm/views/shelf.py index 6e75cc99..9642363e 100644 --- a/bookwyrm/views/shelf.py +++ b/bookwyrm/views/shelf.py @@ -90,7 +90,7 @@ class Shelf(View): ), } - return TemplateResponse(request, "user/shelf/shelf.html", data) + return TemplateResponse(request, "shelf/shelf.html", data) @method_decorator(login_required, name="dispatch") # pylint: disable=unused-argument