<% _.each(chapters, function(chapter) { %>
|
<%= chapter.display_name %>
|
<%= chapter.start %> |
<%= chapter.due %> |
<%- gettext('remove') %>
|
<% _.each(chapter.children, function(child) { %>
|
<%= child.display_name %>
|
<%= child.start %> |
<%= child.due %> |
<%- gettext('remove') %>
|
<% _.each(child.children, function(subchild) { %>
| <%= subchild.display_name %> |
<%= subchild.start %> |
<%= subchild.due %> |
<%- gettext('remove') %>
|
<% }); %>
<% }); %>
<% }); %>