mysteriendrama/lib/python3.11/site-packages/django/contrib/admin/templates/admin/500.html
2023-07-22 12:13:39 +02:00

18 lines
551 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "admin/base_site.html" %}
{% load i18n %}
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% translate 'Home' %}</a>
&rsaquo; {% translate 'Server error' %}
</div>
{% endblock %}
{% block title %}{% translate 'Server error (500)' %}{% endblock %}
{% block content %}
<h1>{% translate 'Server Error <em>(500)</em>' %}</h1>
<p>{% translate 'Theres been an error. Its been reported to the site administrators via email and should be fixed shortly. Thanks for your patience.' %}</p>
{% endblock %}