{% extends "admin/base_site.html" %} {% load static %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

{% for data in asistentes_data %}

👤 {{ data.asistente.user_profile.full_name }} (Cuenta: {{ data.asistente.user_profile.account_number }})

{{ data.total }}
Registros Totales
{{ data.total_estudiantes }}
Estudiantes Regulares
{{ data.total_externos }}
Usuarios Externos
{% if data.estudiantes %}

📚 Estudiantes Regulares ({{ data.total_estudiantes }})

{% for reg in data.estudiantes %} {% endfor %}
Fecha y Hora Estudiante Número de Cuenta Evento Método
{{ reg.timestamp|date:"d/m/Y H:i" }} {{ reg.student.full_name }} {{ reg.student.account_number }} {{ reg.event.title }} {% if reg.registration_method == 'manual' %} ✍️ Manual {% elif reg.registration_method == 'barcode' %} 📱 Código {% else %} {{ reg.registration_method }} {% endif %}
{% endif %} {% if data.externos %}

🌍 Usuarios Externos ({{ data.total_externos }})

{% for reg in data.externos %} {% endfor %}
Fecha y Hora Usuario Externo ID Temporal Institución Evento
{{ reg.timestamp|date:"d/m/Y H:i" }} {{ reg.external_user.full_name }} {{ reg.external_user.temporary_id }} {{ reg.external_user.institution }} {{ reg.event.title }}
{% endif %} {% if not data.estudiantes and not data.externos %}

Este asistente aún no ha registrado ninguna asistencia.

{% endif %}
{% endfor %}
{% endblock %}