nuitdelinfo_2021/templates/error.html

11 lines
250 B
HTML
Raw Permalink Normal View History

2021-12-03 05:57:06 +01:00
{% extends 'base.html' %}
{% load static %}
{% block content %}
2021-12-02 21:57:32 +01:00
<h1>Oups, une erreur est survenue :/</h1>
{% if quote %}
<h2>Pour nous faire pardonner voici une citation de Thomas Pesquet:</h2>
<p>{{ quote }}</p>
{% endif %}
2021-12-03 05:57:06 +01:00
{% endblock %}