From e2995a9e60d8a8ee5078b9faeb95ae1fa2eaf9e9 Mon Sep 17 00:00:00 2001 From: Piotr Mitros Date: Sat, 10 Mar 2012 22:31:58 -0500 Subject: [PATCH] Basic gradebook --- gradebook.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 gradebook.html diff --git a/gradebook.html b/gradebook.html new file mode 100644 index 0000000000..e237fbe16a --- /dev/null +++ b/gradebook.html @@ -0,0 +1,15 @@ + +% for s in students: +

${s['username']}

+% for c in s['grade_info']['grade_summary']: +

${c['category']}

+

+% if 'subscores' in c: + % for ss in c['subscores']: +
${ss['summary']} + % endfor +% endif +

+% endfor +% endfor +