32 lines
995 B
HTML
32 lines
995 B
HTML
<%!
|
|
from django.core.urlresolvers import reverse
|
|
%>
|
|
|
|
<%def name="make_chapter(chapter)">
|
|
<h3><a href="#">${chapter['name']}</a></h3>
|
|
|
|
<ul>
|
|
% for section in chapter['sections']:
|
|
<li${' class="active"' if 'active' in section and section['active'] else ''}>
|
|
<a href="${ MITX_ROOT_URL}${reverse('courseware_section', args=format_url_params([course_name, chapter['name'], section['name']]))}">
|
|
<p>${section['name']}
|
|
<span class="subtitle">
|
|
${section['format']} ${"due " + section['due'] if 'due' in section and section['due'] != '' else ''}
|
|
</span>
|
|
</p>
|
|
|
|
</a>
|
|
% endfor
|
|
</ul>
|
|
</%def>
|
|
|
|
% for chapter in toc:
|
|
${make_chapter(chapter)}
|
|
% endfor
|
|
|
|
## add a link to allow course.xml to be reloaded from the git content repo
|
|
% if settings.QUICKEDIT:
|
|
<h3><a href="#">quickedit</a></h3>
|
|
<ul><li><a href="${MITX_ROOT_URL}/quickedit/course.xml">gitreload</a></li></ul>
|
|
% endif
|