Skip to content

Commit

Permalink
fix : Aclaracion campo inicio fin #79
Browse files Browse the repository at this point in the history
  • Loading branch information
juancruz1990 committed Aug 20, 2023
1 parent da3f99d commit 9757da6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions venta/templates/venta/vendedor.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ <h5 class="my-4">PREFERENCIAS DEL CLIENTE : {%if request.session.nombre_cliente%

</h5>
</center>

<form id="form_preferencias_cliente" onsubmit="return evitar_envio(event)"
action="{%url 'venta:iniciar_venta'%} " method="POST">
{% csrf_token %}
<label for="fecha1"> desde: </label>
<label for="fecha1"> fecha inicio: </label>
<input type="date" id="fecha1" name="fecha_inicio" value="{{ fecha_inicio }}" min="" max="" onclick="fecha_actual();">
<label for="fecha2"> hasta: </label>
<label for="fecha2"> fecha fin: </label>
<input type="date" id="fecha2" name="fecha_fin" value= "{{ fecha_fin }}" min=" max=" onclick="fecha_minima();">
<label for="pasajeros"> Pasajeros: </label>
<label for="pasajeros"> Pasajeros: </label>
<input type="number" id="pasajeros" name="pasajeros" value="{{ pasajeros }}" min=1>
<input type="submit" id="filtrar" name="filtrar">
<button><a href="{%url 'venta:limpiar_preferencias'%}"> limpiar Preferencias</a></button>
Expand Down

0 comments on commit 9757da6

Please sign in to comment.