open-law/app/templates/error.html

14 lines
316 B
HTML
Raw Normal View History

2023-04-20 13:10:16 +00:00
{% extends "base.html" %}
<!-- prettier-ignore -->
{% block content %}
2023-04-24 14:59:50 +00:00
<div class="jumbotron my-4 mr-64">
2023-04-20 13:10:16 +00:00
<div class="text-center">
<!-- prettier-ignore -->
<h1>{{ '{} - {}'.format(error.code, error.name) }}</h1>
<p>{{ error.description }}.</p>
</div>
</div>
<!-- prettier-ignore -->
{% endblock %}