Coverage for templates / account / logout.html: 0%
9 statements
« prev ^ index » next coverage.py v7.13.2, created at 2026-03-10 14:10 +0000
« prev ^ index » next coverage.py v7.13.2, created at 2026-03-10 14:10 +0000
2{% extends '_base.html' %}
3{% load crispy_forms_tags %}
4{% load i18n %}
6{% block page_title %}{% trans "Log out" %}{% endblock %}
7{% block page_h2 %}{% trans "Log out" %}{% endblock %}
9{% block page_body%}
10<p>{% trans "Are you sure you want to sign out?" %}</p>
11<form method="post" action="{% url 'account_logout' %}">
12 {% csrf_token %}
13 {{ form|crispy }}
14 <button class="btn btn-success" type="submit">{% trans "Log out" %}</button>
15</form>
16{% endblock %}