diff --git a/cotisations/templates/cotisations/new_facture.html b/cotisations/templates/cotisations/new_facture.html new file mode 100644 index 00000000..2795718a --- /dev/null +++ b/cotisations/templates/cotisations/new_facture.html @@ -0,0 +1,114 @@ +{% 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 %} + {% bootstrap_form factureform %} + {{ venteform.management_form }} +
+ {% for form in venteform.forms %} +
+ {{ form.as_p }} +
+ {% endfor %} +
+ +

+ Prix total : 0,00 € +

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