Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions src/objects/templates/account_blocked.html
Original file line number Diff line number Diff line change
@@ -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 %}

<h1>Sorry, your account has been blocked</h1>

<p>If you you want your account unblocked, please contact the webmaster.</p>

{% endblock content %}
{% block content_header %}
{{ block.super }}
{% endblock content_header %}
<div class="container container--center">
<h1>{% trans "Sorry, your account has been blocked" %}</h1>
<p>{% trans "If you you want your account unblocked, please contact the webmaster." %}</p>
</div>
{% endblock %}
Loading