{% set current_theme = current_theme() %} {% from "macros/form_errors.j2" import render_field_errors, render_form_errors %} {% set config = config() %} {{ current_theme.headertags() }} {{ _('Inscripciones') }} - {{ programa.nombre }} {{ current_theme.local_style() }} {{ current_theme.navbar() }}
{{ current_theme.notify() }}

{{ _('Inscripciones del Programa') }}

{{ programa.nombre }} ({{ programa.codigo }})

{% if enrollments %}
{% for enrollment, usuario in enrollments %} {% endfor %}
{{ _("Estudiante") }} {{ _("Email") }} {{ _('Fecha de Inscripción') }} {{ _('Inscrito Por') }} {{ _("Acciones") }}
{{ usuario.nombre }} {{ usuario.apellido }}
{{ usuario.usuario }}
{{ usuario.correo_electronico }} {{ enrollment.creado.strftime('%d/%m/%Y') if enrollment.creado else 'N/A' }} {{ enrollment.creado_por or _('Sistema') }}
{% else %}
{{ _('No hay estudiantes inscritos') }}

{{ _('Aún no hay estudiantes inscritos en este programa.') }}

{{ _('Inscribir Primer Estudiante') }}
{% endif %}