From 1b372e6049861ba0edba6895e6904a68134dfc45 Mon Sep 17 00:00:00 2001 From: David Sinquin Date: Thu, 14 Jul 2016 20:18:25 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20JS=20pour=20la=20cr=C3=A9ation=20d?= =?UTF-8?q?e=20factures?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/cotisations/new_facture.html | 114 ++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 cotisations/templates/cotisations/new_facture.html 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 %}