mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
508 B
18 lines
508 B
{% 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 %}
|
|
|