Files
PyRIGS/templates/500.html
2015-11-10 11:06:52 +00:00

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 %}