kadenios/shared/templates/500.html

24 lines
447 B
HTML
Raw Normal View History

2021-06-18 22:34:29 +02:00
{% extends "base.html" %}
{% load i18n %}
{% block content %}
2021-07-13 02:30:24 +02:00
<h1 class="title">{% trans "Erreur 500" %}</h1>
2021-06-18 22:34:29 +02:00
<hr>
<div class="hero is-danger">
<div class="hero-body">
<div class="subtitle">
<span class="icon-text">
<span class="icon is-size-3 mx-5">
<i class="fas fa-bug"></i>
</span>
<span>{% trans "Erreur interne du serveur." %}</span>
</span>
</div>
</div>
</div>
2021-07-13 02:30:24 +02:00
2021-06-18 22:34:29 +02:00
{% endblock %}