<%namespace name='static' file='static_content.html'/> <%inherit file="main.html" /> <%! from django.core.urlresolvers import reverse %> <%block name="headextra"> <%static:css group='course'/> <%static:js group='courseware'/> <%block name="js_extra"> <%include file="/courseware/course_navigation.html" args="active_page='notes'" />

My Notes

% for note in notes:
${note.quote|h}
${note.text.replace("\n", "
") | n,h}
    % if note.tags:
  • Tags: ${note.tags|h}
  • % endif
  • Author: ${note.user.username}
  • Created: ${note.created.strftime('%m/%d/%Y %H:%m')}
  • Source: ${note.uri|h}
% endfor % if notes is UNDEFINED or len(notes) == 0:

You do not have any notes.

% endif