mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-30 09:50:11 -06:00
13 lines
239 B
HTML
13 lines
239 B
HTML
{% extends "bare_base.html" %}
|
|
|
|
{% block title %}400 Server Error{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="m-4">
|
|
<h1 class="text-4xl mt-4 font-bold">400 Server Error</h1>
|
|
|
|
<div class="pt-2">
|
|
{{ exception }}
|
|
</div>
|
|
{% endblock %}
|