{% extends 'base.html' %} {% load static %} {% block title %}Студенты | Автошкола{% endblock %} {% block content %}

Студенты

{% if students %} {% for student in students %}
{{ student.user.get_full_name }}

{{ student.user.email }}
{{ student.phone_number }}

{% endfor %} {% else %}
На данный момент нет зарегистрированных студентов.
{% endif %}
{% endblock %}