nopaque/app/templates/errors/error.html.j2

11 lines
233 B
Plaintext
Raw Permalink Normal View History

2022-09-02 11:07:30 +00:00
{% extends "base.html.j2" %}
{% set title = error.name %}
{% block page_content %}
<div class="container">
<h1 id="title">{{ error.code }} {{ error.name }}</h1>
2022-09-02 11:07:30 +00:00
<p>{{ error.description }}</p>
</div>
{% endblock page_content %}