{% extends 'university/base.html' %} {%block title %} Students {% endblock%} {% block content %} {% for student in students %} {% endfor %}
First name Last name
{{ student.first_name }} {{student.last_name}}
{% endblock%}