{% extends "base.html" %} {% block title %}{{ gettext('Students') }}{% endblock %} {% block content %}

{{ gettext('Students') }}

{{ gettext('Total students:') }} {{ total_students }}

{{ gettext('Search & Filter') }}
{{ gettext('Student List') }}
{% if students %} {% for student in students %} {% endfor %} {% else %} {% endif %}
{{ gettext('ID') }} {{ gettext('Name') }} {{ gettext('CIAL Code') }} {{ gettext('NIF/NIE') }} {{ gettext('Gender') }} {{ gettext('Study Group') }} {{ gettext('Birth Date') }} {{ gettext('Actions') }}
{{ student.id }} {{ student.last_name }}, {{ student.first_name }} {{ student.cial_code }} {{ student.nif_nie_passport or '-' }} {{ student.gender or '-' }} {{ student.study_group or '-' }} {{ student.birth_date or '-' }}
{{ gettext('No students found') }}
{% if total_pages > 1 %} {% endif %}
{% endblock %}