Files
chat/chat/templates/errors.html
T
2026-04-26 14:33:28 -04:00

10 lines
234 B
HTML

{% extends "layout.html" %}
{% block title %}Error - chat{% endblock %}
{% block content %}
<div class="error-page">
<h1>{{ status_code }}</h1>
<p>{{ detail }}</p>
<p><a href="/chats">Back to chats</a></p>
</div>
{% endblock %}