8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-01-27 02:24:21 +00:00
re2o/cotisations/templates/cotisations/facture.html

22 lines
578 B
HTML
Raw Normal View History

{% extends "cotisations/sidebar.html" %}
2016-07-02 15:58:50 +02:00
{% load bootstrap3 %}
{% load staticfiles%}
2016-07-02 15:58:50 +02:00
{% block title %}Création et modification de factures{% endblock %}
{% block content %}
{% bootstrap_form_errors factureform %}
2016-07-02 15:58:50 +02:00
<form class="form" method="post">
{% csrf_token %}
{% bootstrap_form factureform %}
2016-07-14 01:54:06 +02:00
{{ venteform.management_form }}
{% for form in venteform.forms %}
{% bootstrap_form_errors form %}
{{ form.as_p }}
{% endfor %}
2016-07-02 15:58:50 +02:00
{% bootstrap_button "Créer ou modifier" button_type="submit" icon="star" %}
</form>
2016-07-02 15:58:50 +02:00
{% endblock %}