{% extends 'kfet/base.html' %} {% load staticfiles %} {% load widget_tweaks %} {% block extra_head %} {% endblock %} {% block title %}Nouvel inventaire{% endblock %} {% block content-header-title %}Nouvel inventaire{% endblock %} {% block content %} {% include 'kfet/base_messages.html' %}
{% for form in formset %} {% ifchanged form.category %} {% endifchanged %} {{ form.article }} {% endfor %}
Article Quantité par caisse Stock Théorique Caisses en réserve Caisses en arrière Vrac Stock total Compte terminé
{{ form.category_name }}
{{ form.name }} {{ form.box_capacity }} {{ form.stock_old }}
{{ form.stock_new | attr:"readonly"| add_class:"form-control" }}
{{ formset.management_form }} {% if not perms.kfet.add_inventory %}
{% include "kfet/form_authentication_snippet.html" %}
{% endif %} {% csrf_token %}
{% endblock %}