Commit a6480665 by Vik Paruchuri

Integrate rubric into self assessment

parent 16f06ae7
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
% for i in range(len(rubric_categories)): % for i in range(len(rubric_categories)):
<% category = rubric_categories[i] %> <% category = rubric_categories[i] %>
<tr> <tr>
<th>${category['description']}</th> <th>
${category['description']}
% if category['has_score'] == True: % if category['has_score'] == True:
<td> (Your score: ${category['score']})
Your Score: ${category['score']}
</td>
% endif % endif
</th>
% for j in range(len(category['options'])): % for j in range(len(category['options'])):
<% option = category['options'][j] %> <% option = category['options'][j] %>
<td> <td>
......
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