mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
11 lines
233 B
Django/Jinja
11 lines
233 B
Django/Jinja
{% extends "base.html.j2" %}
|
|
|
|
{% set title = error.name %}
|
|
|
|
{% block page_content %}
|
|
<div class="container">
|
|
<h1 id="title">{{ error.code }} {{ error.name }}</h1>
|
|
<p>{{ error.description }}</p>
|
|
</div>
|
|
{% endblock page_content %}
|