<%inherit file="/main.html" /> <%namespace name='static' file='/static_content.html'/> <%! from django.utils.translation import ugettext as _ import json %> <%block name="bodyclass">view-student-notes is-in-course course <%block name="pagetitle">${_("Student Notes")} <%block name="headextra"> <%static:css group='style-course'/> <%include file="/courseware/course_navigation.html" args="active_page='edxnotes'" />

${_('Notes')} ${_("Highlights and notes you've made in course content")}

% if notes: % endif
% if notes:
${_("Loading")}
% else:

${_('You have not made any notes in this course yet. Other students in this course are using notes to:')}

  • ${_("Mark a passage or concept so that it's easy to find later.")}
  • ${_('Record thoughts about a specific passage or concept.')}
  • ${_('Highlight important information to review later in the course or in future courses.')}
% if position is not None:

${_('Get started by making a note in something you just read, like {section_link}.').format( section_link='{section_name}'.format( url=position['url'], section_name=position['display_name'], ) )}

% endif
% endif
## Include Underscore templates <%block name="header_extras"> % for template_name in ["note-item", "tab-item"]: % endfor <%block name="js_extra"> % if notes: % endif