plateforme-tfjm2/templates/403.html

13 lines
341 B
HTML
Raw Normal View History

2020-05-05 00:51:53 +00:00
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h1>{% trans "Permission denied" %}</h1>
{% blocktrans %}You don't have the right to perform this request.{% endblocktrans %}
{% if exception %}
<div>
{% trans "Exception message:" %} {{ exception }}
</div>
{% endif %}
{% endblock %}