a28c00e474
- The login views are in `gestion/` - The templates are under `gestion/templates/gestion/` - `cof/shared.py` moves to `gestion/` and is splitted into 3 files: - The auth backends are in `backends.py`. - The context_processor is in `context_processor.py` - The LOCK/UNLOCK functions remain in `shared.py`
20 lines
766 B
HTML
20 lines
766 B
HTML
{% extends "base_title.html" %}
|
|
|
|
{% block realcontent %}
|
|
{% if error_type == "use_clipper_login" %}
|
|
<h2><strong>Votre identifiant est lié à un compte <tt>clipper</tt></strong></h2>
|
|
<p>
|
|
Veuillez vous connecter à l'aide de votre
|
|
<a href="{% url 'gestion:cas_login' %}">compte <tt>clipper</tt></a>
|
|
</p>
|
|
{% elif error_type == "no_password" %}
|
|
<h2><strong>Votre compte n'a pas de mot de passe associé</strong></h2>
|
|
<p>
|
|
Veuillez <a href="mailto:cof@clipper.ens.fr">nous contacter</a> pour que
|
|
nous en définissions un et que nous vous le transmettions !
|
|
</p>
|
|
{% else %}
|
|
<h1><strong>{{ error_title }}</strong></h1>
|
|
<p>{{ error_description }}</p>
|
|
{% endif %}
|
|
{% endblock %}
|