backend/image_markuper/templates/403.html

10 lines
245 B
HTML
Raw Normal View History

2022-10-25 23:29:13 +03:00
{% 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 %}