8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-10 11:56:25 +00:00
re2o/cotisations/templates/cotisations/facture.html
2016-07-14 01:54:06 +02:00

18 lines
508 B
HTML

{% extends "cotisations/sidebar.html" %}
{% load bootstrap3 %}
{% block title %}Création et modification de factures{% endblock %}
{% block content %}
{% bootstrap_form_errors factureform %}
<form class="form" method="post">
{% csrf_token %}
{% bootstrap_form factureform %}
{% for vente in venteform %}
{% bootstrap_form vente %}
{% endfor %}
{{ venteform.management_form }}
{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %}
</form>
{% endblock %}