mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-19 10:31:07 +00:00
13 lines
356 B
HTML
13 lines
356 B
HTML
{% extends "oscar/error.html" %}
|
|
{% load i18n %}
|
|
{% block title %}
|
|
{% trans 'Permission denied!' %} | {{ block.super }}
|
|
{% endblock %}
|
|
{% block error_heading %}
|
|
{% trans "Permission denied!" %}
|
|
{% endblock %}
|
|
{% block error_message %}
|
|
<p>
|
|
{% trans "We're sorry but you are not permitted to access this page." %}
|
|
</p>
|
|
{% endblock %}
|