From 97757fa1eeb6047269324b8abac52c16dc77e3f3 Mon Sep 17 00:00:00 2001 From: Hugh Rundle Date: Sat, 18 Nov 2023 15:58:01 +1100 Subject: [PATCH] fix blocktrans --- bookwyrm/templates/403.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/bookwyrm/templates/403.html b/bookwyrm/templates/403.html index 64fd43536..0b78bc6b8 100644 --- a/bookwyrm/templates/403.html +++ b/bookwyrm/templates/403.html @@ -7,10 +7,14 @@ {% block content %}

{% trans "Permission Denied" %}

- {% blocktrans trimmed with level=request.user|get_user_permission %} -

You do not have permission to view this page or perform this action. Your user permission level is {{ level }}.

-

If you think you should have access, please speak to your BookWyrm server administrator.

- {% endblocktrans %} +

+ {% blocktrans trimmed with level=request.user|get_user_permission %} + You do not have permission to view this page or perform this action. Your user permission level is {{ level }}. + {% endblocktrans %} +

+

{% trans "If you think you should have access, please speak to your BookWyrm server administrator." %} +

+
{% endblock %}