29 lines
858 B
HTML
29 lines
858 B
HTML
<%def name="make_chapter(chapter)">
|
|
<h3><a href="#">${chapter['name']}</a></h3>
|
|
<div>
|
|
<ul>
|
|
% for section in chapter['sections']:
|
|
<li> <div
|
|
% if 'active' in section and section['active']:
|
|
style="background-color:#aed0ea;"
|
|
% endif
|
|
>
|
|
<a href='/courseware/${format_string(course_name)}/${format_string(chapter['name'])}/${format_string(section['name'])}'>${section['name']}</a> <br>
|
|
<small><b>${section['format']}</b>
|
|
% if 'time' in section and section['time']!="":
|
|
(${int(section['time'])/60} min)
|
|
% endif
|
|
% if 'due' in section and section['due']!="":
|
|
due ${section['due']}
|
|
% endif
|
|
</small>
|
|
</div>
|
|
% endfor
|
|
</ul>
|
|
</div>
|
|
</%def>
|
|
|
|
% for chapter in toc:
|
|
${make_chapter(chapter)}
|
|
% endfor
|