{% extends "base.html" %} {% load url from future %} {% block title %} Share College Course Notes {% endblock %} {% block pagestyle %} {% endblock %} {% block pagescripts %} {% endblock %} {% block content %}
{% for course in object_list %} {% endfor %}
Sort by: Date #Notes Course Name Institution Instructor
{{ course.updated_at|date:"F d, o" }} {{ course.file_count }} {{ course.name }} {{ course.school.name }} {{ course.instructor_name }}

add a course
{% include 'partial/add_course.html' %}

{% endblock %}