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