2019-04-15 07:43:18 +00:00
|
|
|
{% extends "registration/logged_out.html" %}
|
|
|
|
{% comment %}
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
Copyright © 2019 Alexandre Iooss
|
|
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block breadcrumbs %}
|
|
|
|
<div class="breadcrumbs">
|
2019-11-16 14:13:35 +00:00
|
|
|
<a href="{% url 'index' %}">{% trans "Home" %}</a>
|
2019-04-15 07:43:18 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<p>{% trans "Thanks for spending some quality time with the Web site today." %}</p>
|
2019-11-16 14:13:35 +00:00
|
|
|
<p><a href="{% url 'login' %}">{% trans "Log in again" %}</a></p>
|
2019-04-15 07:43:18 +00:00
|
|
|
{% endblock %}
|