403.html 254 B

12345678910111213
  1. {% extends "nm-base.html" %}
  2. {% load i18n %}
  3. {% block title %}{% trans '403 Forbidden' %}{% endblock %}
  4. {% block content %}
  5. <h2>{% trans '403 Forbidden' %}</h2>
  6. <p>{% trans "We're sorry, but the requested page is not allowed." %}</p>
  7. {% endblock %}