Commit ff002e35 by Calen Pennington

Limit the depth of items to display on the overview

parent dc062f56
...@@ -2,10 +2,13 @@ ...@@ -2,10 +2,13 @@
<%! from django.core.urlresolvers import reverse %> <%! from django.core.urlresolvers import reverse %>
<%block name="title">CMS Courseware Overview</%block> <%block name="title">CMS Courseware Overview</%block>
<%def name="branch(section)"> <%def name="branch(section, depth)">
<%
has_children = depth > 0 and len(section.get_children()) > 0
%>
<li class="branch collapsed"> <li class="branch collapsed">
<div class="section-item"> <div class="section-item">
% if len(section.get_children()) > 0: % if has_children:
<a href="#" class="expand-collapse-icon expand"></a> <a href="#" class="expand-collapse-icon expand"></a>
% endif % endif
<a href="#" class="draft-item"> <a href="#" class="draft-item">
...@@ -13,12 +16,15 @@ ...@@ -13,12 +16,15 @@
</a> </a>
${actions(section)} ${actions(section)}
</div> </div>
% if has_children:
<ol> <ol>
% for unit in section.get_children(): % for unit in section.get_children():
${branch(unit)} ${branch(unit, depth-1)}
% endfor % endfor
${new_unit()} ${new_unit()}
</ol> </ol>
% endif
</li> </li>
</%def> </%def>
...@@ -58,7 +64,7 @@ ...@@ -58,7 +64,7 @@
</header> </header>
<ol> <ol>
% for section in week.get_children(): % for section in week.get_children():
${branch(section)} ${branch(section, 1)}
% endfor % endfor
${new_unit()} ${new_unit()}
</ol> </ol>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment