forked from DGNum/gestiojeux
c836f642fa
This avoid the weird double username situation where we want to give the users the choice of their displayed name but at the same time we need them to never change their CAS username. Now CAS matches on email so we do not have problems.
11 lines
516 B
HTML
11 lines
516 B
HTML
{% extends "small_page.html" %}
|
|
|
|
{% block "content" %}
|
|
<h1>Accès refusé</h1>
|
|
<p>Vous n'avez pas la permission pour consulter cette page.</p>
|
|
{% if not user.is_authenticated %}
|
|
<p>Cet accès vous est probablement refusé car vous n'êtes actuellement pas connecté·e.
|
|
Vous pouvez vous rendre à la page de <a href="{% url "accounts:login" %}?next={{ request.get_full_path }}">connexion</a>.</p>
|
|
{% endif %}
|
|
<p>Vous pouvez retourner sur la <a href="{% url "mainsite:home" %}">page d'accueil</a>.</p>
|
|
{% endblock %}
|