{% extends "base.html" %} {% comment %} Copyright (C) by BDE ENS Paris-Saclay SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load i18n crispy_forms_tags %} {% block content %}

{{ title }}

{% csrf_token %} {{ form | crispy }} {# Fill initial data #} {% for ingredient_form in formset %} {% if forloop.first %} {% endif %} {{ ingredient_form | crispy }} {% endfor %}
{% trans "Name" %} {% trans "QR-code number" %} {% trans "Fully used" %}
{{ ingredient_form.name }} {{ ingredient_form.qrcode }} {{ ingredient_form.fully_used }}
{# Display buttons to add and remove products #}
{# Hidden div that store an empty product form, to be copied into new forms #} {% endblock %} {% block extrajavascript %} {% endblock %}