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>
% if category['has_score'] == True: ${category['description']}
<td> % if category['has_score'] == True:
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