{% extends 'courseinfo/base.html' %} {% block title %} Instructor - {{ instructor }} {% endblock %} {% block content %}

{{ instructor }}

{% if instructor.disambiguator %} {% endif %}
First Name: {{ instructor.first_name }}
Last Name: {{ instructor.last_name }}
Disambiguator: {{ instructor.disambiguator }}

Sections

    {% for section in section_list %}
  • {{ section }}
  • {% empty %}
  • There are currently no sections for this instructor.
  • {% endfor %}
{% endblock %}