{% extends "cotisations/sidebar.html" %} {% load bootstrap3 %} {% load staticfiles%} {% block title %}Création et modification de factures{% endblock %} {% block content %} {% bootstrap_form_errors factureform %}
{% csrf_token %}

Nouvelle facture

{% bootstrap_form factureform %} {{ venteform.management_form }}

Articles de la facture

{% for form in venteform.forms %}

{{ form.as_table }}

{% endfor %}

Prix total : 0,00

{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %}
{% endblock %}