aurweb/templates/errors/detail.html
Kevin Morris abfd41f31e
change(fastapi): centralize HTTPException
Signed-off-by: Kevin Morris <kevr@0cost.org>
2021-12-02 23:23:27 -08:00

8 lines
227 B
HTML

{% extends 'partials/layout.html' %}
{% block pageContent %}
<div id="error-page" class="box">
<h2>{{ "%d" | format(exc.status_code) }} - {{ phrase }}</h2>
<p>{{ exc.detail }}</p>
</div>
{% endblock %}