10 lines
210 B
HTML
10 lines
210 B
HTML
{% extends "base.html" %}
|
|
{% block title %}
|
|
Internal Error
|
|
{% endblock title %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
{% endblock head %}
|
|
{% block content %}
|
|
<h1>Internal Error</h1>
|
|
{% endblock content %}
|