first commit
This commit is contained in:
13
Movement/templates/Calendar/Create/pay_method.html
Normal file
13
Movement/templates/Calendar/Create/pay_method.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user