14 lines
312 B
HTML
14 lines
312 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
{% load static %}
|
|
<div class="">
|
|
<h2>403 error</h2>
|
|
{% if exception and not exception.strip %}
|
|
<p>{{ exception }}</p>
|
|
{% else %}
|
|
<p>Forbidden</p>
|
|
{% endif %}
|
|
<img src="{% static 'img/x-ray-radiation-no-unauthorised.png' %}" width="500px">
|
|
</div>
|
|
{% endblock %} |