You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

31 lines
870 B

{% extends 'base.html' %}
{% block header %}
<h2>{% block title %}Hacer una nueva reserva{% endblock title %}</h2>
{% endblock header %}
{% block content %}
<div>
<fieldset>
<form action="/eligedia" method="POST">
<legend>Elige día</legend>
<div>
<input type="radio" name="dias" id="hoy" value="{{ hoy }}" checked/>
<label for="hoy">{{ hoy }}</label>
<input type="radio" name="dias" id="manana" value="{{ manana }}"/>
<label for="manana">{{ manana }}</label>
<input type="radio" name="dias" id="pasado" value="{{ pasado }}"/>
<label for="pasado">{{ pasado }}</label>
</div>
<div>
<button type="submit">Enviar</button>
</div>
</form>
</fieldset>
</div>
{% endblock content %}