1234567891011121314151617181920 |
- {% extends 'base.html' %}
-
- {% block header %}
- <h1>{% block title %}UPR Queue{% endblock %}</h1>
- {% endblock %}
-
- {% block content %}
- <form method="post">
- <label for="cName">Name</label>
- <input name="cName" id="name" required></input><br>
- <label for="cEmail">email</label>
- <input name="cEmail" id="email" required></input><br>
-
- {% for station in stations %}
- <input type="radio" name="station" id={{ "station{}".format(station['s_id']) }} value={{ station['nombre_empleado'] }}> {{ "{} ({})".format(station['nombre_empleado'],station['oficina']) }} </input><br>
- {% endfor %}
-
- <input type="submit" value="Get ticket">
- </form>
- {% endblock %}
|