{% load staticfiles %} {{ course.code }} {{ course.name }} | Semester.ly

Semester.ly

{{ school_name }} | {{ course.code }}

{{ course.name }}

{{ course.num_credits }}

credits
{% if avg %}

Average Course Rating

({{ avg }})
{% endif %}
{% if course.description %}

{{ course.description }}

{% else %}

No description found.

{% endif %}
{% if evals and evals|length > 1 %}
{% for e in evals %}

{{ e.year }}

({{ e.score }})
{% endfor %}
{% for e in evals %}

{{ e.year }}

Professor: {{ e.professor }}

({{ e.score }})

{{ e.summary|linebreaks }}

{% endfor %}
{% elif evals %} {% for e in evals %}

{{ e.year }}

Professor: {{ e.professor }}

({{ e.score }})

{{ e.summary|linebreaks }}

{% endfor %} {% else %}

No Course Evaluations found

{% endif %}
{% if lectures %}

Lecture Sections

{% for l in lectures %} {% if l %}
{% if l.0.meeting_section %}

{{ l.0.meeting_section }}

{% else %}

No section number

{% endif %} {% if l.0.location %}
{{ l.0.location }}
{% else %}
No location info
{% endif %} {% if l.0.instructors %}
{{ l.0.instructors }}
{% else %}
No instructor info
{% endif %} {% if l.0.time_start %}
{{ l.0.time_start }} - {{ l.0.time_end }}
{% else %}
No class times info
{% endif %}
{% endif %} {% endfor %}
{% endif %} {% if tutorials %}

Tutorial Sections

{% for t in tutorials %}

{{ t.0.meeting_section }}

{{ t.0.location }}
{% if t.0.instructors %}
{{ t.0.instructors }}
{% else %}
No instructor info
{% endif %} {% if t.0.time_start %}
{{ t.0.time_start }} - {{ t.0.time_end }}
{% else %}
No class times info
{% endif %}
{% endfor %}
{% endif %} {% if practicals %}

Lab/Practical Sections

{% for p in practicals %}

{{ p.0.meeting_section }}

{{ p.0.location }}
{% if p.0.instructors %}
{{ p.0.instructors }}
{% else %}
No instructor info
{% endif %} {% if p.0.time_start %}
{{ p.0.time_start }} - {{ p.0.time_end }}
{% else %}
No class times info
{% endif %}
{% endfor %}
{% endif %}