first commit

This commit is contained in:
2025-11-01 18:10:39 -03:00
parent 6e7348359f
commit 63cf724aaf
220 changed files with 4040 additions and 62 deletions

View File

@@ -0,0 +1,13 @@
<div class=""> Produto </div> <br>
<div class="form-group">
{% for Pay in form.product.field.queryset %}
<div class="form-check ">
<label>
<input type="radio" name="product"
value="{{ Pay.id }}" class="form-check-input"
>
{{ Pay.name }} - {{ Pay.value }}
</label><br>
</div>
{% endfor %}
</div> <br>