No Description

index.html 711B

1234567891011121314151617181920
  1. {% extends 'base.html' %}
  2. {% block header %}
  3. <h1>{% block title %}UPR Queue{% endblock %}</h1>
  4. {% endblock %}
  5. {% block content %}
  6. <form method="post">
  7. <label for="cName">Name</label>
  8. <input name="cName" id="name" required></input><br>
  9. <label for="cEmail">email</label>
  10. <input name="cEmail" id="email" required></input><br>
  11. {% for station in stations %}
  12. <input type="radio" name="station" id={{ "station{}".format(station['s_id']) }} value={{ station['nombre_empleado'] }}> {{ "{} ({})".format(station['nombre_empleado'],station['oficina']) }} </input><br>
  13. {% endfor %}
  14. <input type="submit" value="Get ticket">
  15. </form>
  16. {% endblock %}