{% extends 'courseinfo/base.html' %} {% block title %} Section - {{ section }} {% endblock %} {% block content %}

{{ section }}

Course: {{ course }}
Section Name: {{ section.section_name }}
Semester: {{ semester }}
Instructor: {{ instructor }}

Registrations

    {% for registration in registration_list %}
  • {{ registration.student }}
  • {% empty %}
  • There are currently no students registered for this section.
  • {% endfor %}
{% endblock %}