{% extends "layouts/base.html" %} {% block title %} Transactions {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %} {% load poll_extras %}
{% include 'includes/navigation.html' %}

  Informations Quota


Article : {{article.medicament.nom_de_marque}} {{article.medicament.forme}} {{article.medicament.dosage}}

qantite total : {{article.stock_comptable_disponible}}
{% if liste_lot %} {% for lot in liste_lot %}
N° lot : {{lot.numero_lot}}

date d'arrivage : {{lot.date_arrivage}}

date d'expiration : {{lot.date_d_expiration}}

{% endfor %} {% endif %}

Quota pour chaque operatrice

{% if liste_quota %} {% for q in liste_quota %} {% endfor %} {% else %}

No quota définie

{% endif %}
date Operatrice qantite qantite reste Modifier
{{q.date}} {{q.user.username}} {{q.qantite}} {{q.qantite_reste}}
{% csrf_token %}
{% csrf_token %}

Ajouter Quota

Operatrice Quantité
{% if liste_user %} {% for user in liste_user %} {% if user.id == request.user.id %}
N° lot :
{% else %} {% if group in user.groups.all %} {% endif %} {% endif %} {% endfor %} {% endif %}

Ajouter une autre ligne Supprimer
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}