31 lines
688 B
HTML
31 lines
688 B
HTML
{% extends "newbase.html" %}
|
|
{% load staticfiles %}
|
|
|
|
{% block title %}Error{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<h1>Error 502 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 %}
|