Browse Source

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

fix_front_profil
Hugo LEVY-FALK 8 years ago
parent
commit
ce83d6e299
  1. 3
      cotisations/templates/cotisations/payment.html

3
cotisations/templates/cotisations/payment.html

@ -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…
Cancel
Save