Files
edx-platform/lms/templates/open_ended_view_only_rubric.html
2013-02-09 08:46:24 -05:00

13 lines
358 B
HTML

<div class="rubric">
% for i in range(len(categories)):
<% category = categories[i] %>
% for j in range(len(category['options'])):
<% option = category['options'][j] %>
% if option['selected']:
${category['description']} : ${option['points']} |
% endif
% endfor
% endfor
</div>