Private
Public Access
1
0
Files
rowsandall/templates/500.html
Sander Roosendaal 196548fdcc staticfiles to static
2021-04-14 10:00:14 +02:00

31 lines
684 B
HTML

{% extends "newbase.html" %}
{% load static %}
{% block title %}Error {% endblock %}
{% block main %}
<h1>Error 500 Internal Server Error</h1>
<ul class="main-content">
<li class="grid_2">
<p>
The site reported an internal server error. The site developer has been
notified automatically with a full error report. You can help the developer
by reporting an issue on Bitbucket using the button below.
</p>
</li>
<li>
<a class="red button"
href="https://bitbucket.org/sanderroosendaal/rowsandall/issues/new">
Report an issue
</a>
</li>
</ul>
{% endblock %}
{% block sidebar %}
{% include 'menu_other.html' %}
{% endblock %}