Initial commit
This commit is contained in:
commit
793bb6a488
182 changed files with 17153 additions and 0 deletions
19
templates/403.html
Normal file
19
templates/403.html
Normal 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 %}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue