Files
penracourses/templates/500.html
T
Ross b537c8d5d4 .
2021-10-04 22:35:01 +01:00

14 lines
242 B
HTML

{% extends 'base.html' %}
{% block content %}
{% load static %}
<div class="">
<h2>Server Error (500)</h2>
<img src="{% static 'img/mrifail.jpg' %}" width="500px">
{% if exception %}
{{exception}}
{% endif %}
</div>
{% endblock %}