15 lines
285 B
HTML
15 lines
285 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}500{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>500: ISE</h1>
|
|
<p>
|
|
An error occurred while
|
|
processing your request.
|
|
</p>
|
|
<p>
|
|
Please, try again later
|
|
or contact website admin.
|
|
</p>
|
|
{% endblock %}
|