diff --git a/lms/templates/open_ended_combined_rubric.html b/lms/templates/open_ended_combined_rubric.html new file mode 100644 index 0000000000..f58ed2f03d --- /dev/null +++ b/lms/templates/open_ended_combined_rubric.html @@ -0,0 +1,29 @@ +
+
+ % for i in range(len(categories)): + <% category = categories[i] %> + ${category['description']}
+ + % endfor +
+
diff --git a/lms/templates/open_ended_rubric.html b/lms/templates/open_ended_rubric.html index 58e74a68da..da2be513d9 100644 --- a/lms/templates/open_ended_rubric.html +++ b/lms/templates/open_ended_rubric.html @@ -1,52 +1,22 @@
- % if view_only and has_score: -

- % elif view_only: -

Use the below rubric to rate this submission.

- % else: -

Rubric

-

Select the criteria you feel best represents this submission in each category.

- % endif +

Rubric

+

Select the criteria you feel best represents this submission in each category.

% for i in range(len(categories)): <% category = categories[i] %> - ${category['description']}
+ ${category['description']}
diff --git a/lms/templates/open_ended_view_only_rubric.html b/lms/templates/open_ended_view_only_rubric.html new file mode 100644 index 0000000000..55bf5338cf --- /dev/null +++ b/lms/templates/open_ended_view_only_rubric.html @@ -0,0 +1,12 @@ +
+
+ % 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']} points + % endfor + % endfor +
+