{% extends 'base.html' %}
{% load humanize %}
{% load custom_filters %}
{% load math_extras %}
{% block content %}
Plan des chrgements par mois
{% csrf_token %}
|
Résulat : {{nbr_result}}
|
|
|
| Mois Etd |
|
|
{% for mois in months %}
{{ mois|capfirst }} |
{% endfor %}
| Mois Eta |
|
|
{% for mois_org in months_org %}
{{ mois_org|capfirst }} |
{% endfor %}
| Code |
Désignation |
In Hand |
{% for mois in months_data_show %}
{{ mois }} |
{% endfor %}
{% for produit in products %}
| {{produit.article}} |
{{produit.nom}} |
{{produit.inhand|intspace}} |
{% for mois in months_data %}
{{ produit|get_item:mois|intspace}} |
{% endfor %}
{% endfor %}
{% endblock %}