Files
edx-platform/lms/templates/studio_render_children_view.html
2014-05-29 14:02:45 -04:00

13 lines
287 B
HTML

% if can_reorder:
<ol class="reorderable-container">
% endif
% for item in items:
${item['content']}
% endfor
% if can_reorder:
</ol>
% endif
% if can_add and not xblock_context['read_only']:
<div class="add-xblock-component new-component-item adding"></div>
% endif