mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
12 lines
367 B
HTML
12 lines
367 B
HTML
{% extends 'base.html' %}
|
|
{% load staticfiles %}
|
|
{% block title %}Server error{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="text-center">
|
|
<h1>500: Server error</h1>
|
|
<img src="{% static 'imgs/500.jpg' %}"/>
|
|
<p>If you need assistance, you may reference this error as <strong>{{ request.sentry.id }}</strong>.</p>
|
|
</div>
|
|
{% endblock %}
|