{% extends "kfet/base.html" %} {% block extra_head %}{{ form.media }}{% endblock %} {% block title %}Nouvelle caisse{% endblock %} {% block content-header-title %}Création d'une caisse{% endblock %} {% block content %} {% include 'kfet/base_messages.html' %}
{% csrf_token %} {{ form.non_field_errors}} {% for field in form %} {{ field.errors }} {{ field.label_tag }}
{{ field }}
{% if field.help_text %}

{{ field.help_text|safe }}

{% endif %} {% endfor %} {% if not perms.kfet.add_checkout %} {% endif %}
{% endblock %}