8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-12 01:03:09 +00:00

Même template pour la validation de paiement.

This commit is contained in:
Hugo LEVY-FALK 2018-07-03 14:54:41 +02:00
parent 9c69d259d9
commit 1f6b30c82f
3 changed files with 6 additions and 39 deletions

View file

@ -39,6 +39,9 @@ def cheque(request, invoice_pk):
)
return render(
request,
'cotisations/payment_form.html',
{'form': form}
'cotisations/payment.html',
{
'form': form,
'amount': invoice.prix_total()
}
)

View file

@ -37,6 +37,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</h3>
<form class="form" method="{{ method }}" action="{{ action }}">
{{ content | safe }}
{% bootstrap_form form %}
{% trans "Pay" as tr_pay %}
{% bootstrap_button tr_pay button_type='submit' icon='piggy-bank' %}
</form>

View file

@ -1,37 +0,0 @@
{% extends "cotisations/sidebar.html" %}
{% comment %}
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
se veut agnostique au réseau considéré, de manière à être installable en
quelques clics.
Copyright © 2018 Hugo Levy-Falk
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
{% endcomment %}
{% load bootstrap3 %}
{% load staticfiles%}
{% load i18n %}
{% block title %}{% trans form.title %}{% endblock %}
{% block content %}
<h2>{% trans form.title %}</h2>
<form class="form" method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% bootstrap_button tr_confirm button_type='submit' icon='piggy-bank' %}
</form>
{% endblock %}