Files
CenterPes/Movement/templates/Calendar/Create/pay_method.html
2025-11-01 18:10:39 -03:00

13 lines
435 B
HTML

<div class=""> Metodo de Pagamento </div> <br>
<div class="form-group">
{% for Pay in form.pay_method.field.queryset %}
<div class="form-check ">
<label>
<input type="radio" name="pay_method"
value="{{ Pay.id }}" class="form-check-input"
>
{{ Pay.name }} - {{ Pay.bank }}
</label><br>
</div>
{% endfor %}
</div> <br>