mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 20:03:11 +00:00
Refix les erreurs d'affichage
This commit is contained in:
parent
decf57f0fe
commit
d37364ee8f
2 changed files with 3 additions and 2 deletions
|
@ -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">{{ request.user.solde }} €</span>
|
Balance : <span class="label label-default">{{ solde }} €</span>
|
||||||
{% endblocktrans %}
|
{% endblocktrans %}
|
||||||
</h3>
|
</h3>
|
||||||
<form class="form" method="post">
|
<form class="form" method="post">
|
||||||
|
|
|
@ -899,5 +899,6 @@ 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)
|
||||||
|
|
Loading…
Reference in a new issue