mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-27 15:12:25 +00:00
21 lines
578 B
HTML
21 lines
578 B
HTML
{% extends "cotisations/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
{% load staticfiles%}
|
|
|
|
{% 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 %}
|
|
{{ venteform.management_form }}
|
|
{% for form in venteform.forms %}
|
|
{% bootstrap_form_errors form %}
|
|
{{ form.as_p }}
|
|
{% endfor %}
|
|
{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %}
|
|
</form>
|
|
|
|
{% endblock %}
|