From cf7cbfdf8f61f502b8dc6c8f32e7d10c1fba8941 Mon Sep 17 00:00:00 2001 From: Joachim Date: Sun, 23 May 2021 17:17:30 +0200 Subject: [PATCH] Fix title styles --- bookwyrm/templates/lists/list.html | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/bookwyrm/templates/lists/list.html b/bookwyrm/templates/lists/list.html index 72f3210b..84c6edb0 100644 --- a/bookwyrm/templates/lists/list.html +++ b/bookwyrm/templates/lists/list.html @@ -98,7 +98,9 @@
-

{% trans "Sort List" %}

+

+ {% trans "Sort List" %} +

@@ -119,7 +121,13 @@
{% if request.user.is_authenticated and not list.curation == 'closed' or request.user == list.user %} -

{% if list.curation == 'open' or request.user == list.user %}{% trans "Add Books" %}{% else %}{% trans "Suggest Books" %}{% endif %}

+

+ {% if list.curation == 'open' or request.user == list.user %} + {% trans "Add Books" %} + {% else %} + {% trans "Suggest Books" %} + {% endif %} +