24 lines
667 B
HTML
24 lines
667 B
HTML
{% extends "bases.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Change Workout {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="grid_12">
|
|
<h1>Error 500 Internal Server Error</h1>
|
|
<p>
|
|
The site reported an internal server error. If this behavior repeats, please inform us by using the contact form at the bottom of this page. This allows us to improve the site's behaviour.
|
|
</p>
|
|
|
|
<p>
|
|
You can also report an issue on the Rowsandall Bitbucket issue list:
|
|
</p>
|
|
<div class="grid_2 alpha">
|
|
<a class="button red small" href="https://bitbucket.org/sanderroosendaal/rowsandall/issues/new">Report an issue</a>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|