{% extends 'base.html' %} {% block header %}

{% block title %}UPR Queue{% endblock %}

{% endblock %} {% block content %}
{{ form.hidden_tag() }} {{ form.cName.label }}
{{ form.cName }}
{{ form.cEmail.label }}
{{ form.cEmail }}
{% for station in stations %} {{ "{} ({})".format(station['nombre_empleado'],station['oficina']) }}
{% endfor %} {{ form.submit }}
{% endblock %}