Files
PyRIGS/templates/500.html

12 lines
367 B
HTML

{% extends 'base_rigs.html' %}
{% load static %}
{% 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 %}