10 lines
300 B
HTML
10 lines
300 B
HTML
|
{% extends "account/base.html" %}
|
||
|
|
||
|
{% load i18n %}
|
||
|
{% block title %}{{ block.super }} - {% trans "Account Inactive" %}{% endblock title %}
|
||
|
{% block page_title %}{% trans "Account Inactive" %}{% endblock page_title %}
|
||
|
|
||
|
{% block content %}
|
||
|
<p>{% trans "This account is inactive." %}</p>
|
||
|
{% endblock %}
|