account_inactive.html 243 B

1234567891011
  1. {% extends "account/base.html" %}
  2. {% load i18n %}
  3. {% block head_title %}{% trans "Account Inactive" %}{% endblock %}
  4. {% block content %}
  5. <h1>{% trans "Account Inactive" %}</h1>
  6. <p>{% trans "This account is inactive." %}</p>
  7. {% endblock %}