From c2bc37f1b5f81d396828eea519b6c9b4aa41e1a5 Mon Sep 17 00:00:00 2001 From: Daniel Mursa Date: Tue, 10 Feb 2026 15:59:55 +0100 Subject: [PATCH] :art: Fix styling account_blocked.html file --- src/objects/templates/account_blocked.html | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/src/objects/templates/account_blocked.html b/src/objects/templates/account_blocked.html index df551d0f..07f22c9b 100644 --- a/src/objects/templates/account_blocked.html +++ b/src/objects/templates/account_blocked.html @@ -1,11 +1,16 @@ -{% extends 'master.html' %} +{% extends "maykin_common/api/index_base.html" %} +{% load i18n %} -{% block menu %}{% endblock %} +{% block page_title %}{{ settings.PROJECT_NAME }}{% endblock %} +{% block page_subtitle %}{{ settings.SITE_TITLE }}{% endblock page_subtitle %} {% block content %} -

Sorry, your account has been blocked

- -

If you you want your account unblocked, please contact the webmaster.

- -{% endblock content %} + {% block content_header %} + {{ block.super }} + {% endblock content_header %} +
+

{% trans "Sorry, your account has been blocked" %}

+

{% trans "If you you want your account unblocked, please contact the webmaster." %}

+
+{% endblock %}