8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-31 23:12:40 +00:00

Répare le paiement par chèque en donnant une valeur par défaut à method + csrf_token

This commit is contained in:
Hugo LEVY-FALK 2018-07-16 20:25:52 +02:00
parent 7c7455f9bc
commit ce83d6e299

View file

@ -35,9 +35,10 @@ with this program; if not, write to the Free Software Foundation, Inc.,
Pay {{ amount }} €
{% endblocktrans %}
</h3>
<form class="form" method="{{ method }}" action="{{ action }}">
<form class="form" method="{{ method | default:"post" }}" action="{{ action }}">
{{ content | safe }}
{% if form %}
{% csrf_token %}
{% bootstrap_form form %}
{% endif %}
{% trans "Pay" as tr_pay %}