mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-27 07:02:26 +00:00
Répare le paiement par chèque en donnant une valeur par défaut à method + csrf_token
This commit is contained in:
parent
7c7455f9bc
commit
ce83d6e299
1 changed files with 2 additions and 1 deletions
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue