mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-22 09:26:35 +03:00
10 lines
245 B
HTML
10 lines
245 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Forbidden (403){% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Forbidden (403)</h1>
|
|
|
|
<p>{% if exception %}{{ exception }}{% else %}You're not allowed to access this page.{% endif %}</p>
|
|
{% endblock content %}
|