{% extends "base.html" %} {% load url from future %} {% block pagescripts %} {% endblock %} {% block pagestyle %} {% endblock %} {% block lightboxen %} {% include 'lightbox/upload.html' %} {% endblock %} {% block title %} Share Notes for {{ course.name }} | {{ course.school.name }} {% endblock %} {% block content %}
course
{{ course.name }}
{% comment %}
{% comment %}
{% if course in user.get_profile.courses.all %}
drop
{% else %}
join
{% endif %}
course_action_gear
{% endcomment %}
{% if course.desc %} {{ course.desc }} {% endif %}
upload
Latest uploaded notes
{% for note in course.note_set.all %}
{{ note.uploaded_at|date:"gA" }} // {{ note.uploaded_at|date:"D M d o" }}
dashboard_activity_callout_icon_notebook
{% if note.text %} {{ note.text|slice:":500" }}… {% else %} {{ note.description }} {% endif %}
{% comment %}
So far, {{ note.numUpVotes }} people have completely fallen in love with with these notes. {{ note.viewCount }} people have viewed them.
{% endcomment %}
{% endfor %}
{% comment %}
search_arrow_left
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
search_arrow_right
{% endcomment %}
{% endblock %}