13 lines
190 B
HTML
13 lines
190 B
HTML
|
{% extends "base.html" %}
|
||
|
{% load i18n %}
|
||
|
|
||
|
|
||
|
{% block auth %}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<h1 class="title">{% trans "Vous avez bien été déconnecté." %}</h1>
|
||
|
<hr>
|
||
|
|
||
|
{% endblock %}
|