Files
PyRIGS/templates/500.html
Matthew Smith 8c60f6cb1d created separate base for RIGS and assets.
Fixed create asset form
2019-10-01 22:46:48 +01:00

12 lines
372 B
HTML

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