{% extends 'kfet/base.html' %} {% block title %}Informations sur la caisse {{ checkout.name }}{% endblock %} {% block content-header-title %}Caisse - {{ checkout.name }}{% endblock %} {% block content %}

Nom: {{ checkout.name }}

Valide du {{ checkout.valid_from|date:'l j F Y, G:i' }} au {{ checkout.valid_to|date:'l j F Y, G:i' }}

Créée par: {{ checkout.created_by }}

Balance: {{ checkout.balance }} €

Protected: {{ checkout.is_protected }}

Relevés: {% with statements=checkout.statements.all %} {% if not statements %} Pas de relevé {% else %} {% endif %} {% endwith %} {% endblock %}