8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-20 09:32:29 +00:00

Revert "Fix les erreurs d'affichage lors du paiement"

This reverts commit 9cae582201
This commit is contained in:
klafyvel 2018-06-17 15:04:05 +02:00
parent c7adc15e34
commit 12af239f64
3 changed files with 3 additions and 4 deletions

View file

@ -129,7 +129,7 @@ def comnpay(facture, request):
facture.prix(), facture.prix(),
idTransaction=str(facture.id) idTransaction=str(facture.id)
), ),
'amount': facture.prix(), 'amount': facture.prix,
} }
return r return r

View file

@ -33,7 +33,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<h2>{% trans "Balance refill" %}</h2> <h2>{% trans "Balance refill" %}</h2>
<h3> <h3>
{% blocktrans %} {% blocktrans %}
Balance : <span class="label label-default">{{ solde }} €</span> Balance : <span class="label label-default">{{ request.user.solde }} €</span>
{% endblocktrans %} {% endblocktrans %}
</h3> </h3>
<form class="form" method="post"> <form class="form" method="post">

View file

@ -870,6 +870,5 @@ def recharge(request):
](invoice, request) ](invoice, request)
return render(request, 'cotisations/payment.html', content) return render(request, 'cotisations/payment.html', content)
return form({ return form({
'rechargeform': refill_form, 'rechargeform': refill_form
'solde': request.user.solde
}, 'cotisations/recharge.html', request) }, 'cotisations/recharge.html', request)