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

{{ section }}

Section Name

{{ section.section_name }}

Semester

{{ semester }}

Course

{{ course }}

Instructors

    {% for instructor in instructor_list %}
  • {{ instructor }}
  • {% empty %}
  • There are currently no instructors for this section.
  • {% endfor %}

Students

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