2022-02-22 16:31:14 +00:00
|
|
|
{% extends 'error/base.html' %}
|
|
|
|
{% load i18n %}
|
2024-02-06 13:35:36 +00:00
|
|
|
{% block title %}
|
|
|
|
403 {% trans "Permission Denied" %}
|
|
|
|
{% endblock %}
|
2018-05-20 21:40:09 +00:00
|
|
|
{% block content %}
|
2022-02-22 16:31:14 +00:00
|
|
|
<h1>403 {% trans "Permission Denied" %}</h1>
|
2018-05-20 21:40:09 +00:00
|
|
|
<div class="alert alert-danger" role="alert">
|
2020-01-24 04:00:32 +00:00
|
|
|
{% blocktrans trimmed %}
|
|
|
|
You do not have permission to access this resource. Contact a site
|
|
|
|
administrator for assistance.
|
|
|
|
{% endblocktrans %}
|
2018-05-20 21:40:09 +00:00
|
|
|
</div>
|
2024-02-06 13:35:36 +00:00
|
|
|
{% endblock %}
|