mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-14 21:46:35 +03:00
12 lines
253 B
HTML
12 lines
253 B
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% translate "Account Inactive" %}{% endblock %}
|
|
|
|
{% block inner %}
|
|
<h1>{% translate "Account Inactive" %}</h1>
|
|
|
|
<p>{% translate "This account is inactive." %}</p>
|
|
{% endblock %}
|