8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-20 13:13:09 +00:00
re2o/cotisations/templates/cotisations/facture.html

22 lines
578 B
HTML
Raw Normal View History

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