{% extends "base.html" %} {% load static %} {% block content %}
{{ labos.nombre }} Entrada
{% for dato in datos %} {% for user in users %} {% if dato.usuario_id == user.id %} {% endif %} {% endfor %} {% if dato.id_asig_id is not None %} {% for asig in asigs %} {% if dato.id_asig_id == asig.id %} {% endif %} {% endfor %} {% else %} {% endif %} {% if dato.id_area_id is not None %} {% for area in areas %} {% if dato.id_area_id == area.id %} {% endif %} {% endfor %} {% else %} {% endif %} {% if dato.id_mat_id is not None %} {% for mate in mates %} {% if dato.id_mat_id == mate.id %} {% endif %} {% endfor %} {% else %} {% endif %} {% endfor %}
ID ID_Usuario Asignatura Area Material Uso Entrada Salida Opciones
{{ dato.id }}{{ user.first_name }} {{ user.last_name }}{{ asig.nombre }}{{ area.nombre }}{{ mate.nombre }}{{ dato.uso }} {{ dato.entrada }} {% if dato.salida != dato.entrada %} {{ dato.salida }} {% else %} Reg. Salida {% endif %} {% if user.is_superuser %} Actualizar {% endif %}
{% endblock content %} {% block javascript %} {% endblock javascript %}