Initial commit

This commit is contained in:
Claude Paroz 2024-06-03 16:49:01 +02:00
commit 793bb6a488
182 changed files with 17153 additions and 0 deletions

19
templates/403.html Normal file
View file

@ -0,0 +1,19 @@
{% extends "base.html" %}
{% block title %}Accès non autorisé{% endblock %}
{% block content %}
<div id="container">
<h2>Oups !!!</h2>
{% if exception %}
<h5>{{ exception }}</h5>
{% else %}
<p>Vous n'avez pas la permission d'accéder au contenu de cette page.</p>
{% endif %}
<p>
<form>
<input type="button" value="Retour!" onclick="history.back()">
</form></p>
</div>
{% endblock %}