{% extends "base.html" %} {% load url from future %} {% load compress %} {% block pagescripts %} {% compress js %} {% endcompress %} {% endblock %} {% block pagestyle %} {% compress css %} {% endcompress %} {% endblock %} {% block title %} Share Notes for {{ course.name }} | {% if course.school %}{{ course.school.name }}{% else %}{{ course.department.school.name }}{% endif %} {% endblock %} {% block raw_content %}
{{ course.name }}   
{% if user.is_authenticated %} {% comment %} {% if user.get_profile.can_edit_items %}    {% endif %} {% endcomment %} {% if already_flagged %} You have reported this course as inappropriate {% else %} {% endif %} {% endif %}
{% comment %} {% if user.get_profile.can_edit_items %} {% include 'partial/edit_course.html' %} {% endif %} {% endcomment %}
Sort By
Category
{% if not note_set %}

This course has no notes yet.

{% else %} {% for note in note_set %} {% include 'notes/note_list_entry.html' with note=note %} {% endfor %}
Date Popularity Category Note
{% endif %}
{% endblock %}