From 1732fc4804c6f5847c2a19451319ca71118346cf Mon Sep 17 00:00:00 2001 From: JM Van Thong Date: Mon, 3 Dec 2012 18:44:19 -0500 Subject: [PATCH] Improve analytics table style and added scroll. --- .../courseware/instructor_dashboard.html | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/lms/templates/courseware/instructor_dashboard.html b/lms/templates/courseware/instructor_dashboard.html index 0d12fbc444..6d696a3558 100644 --- a/lms/templates/courseware/instructor_dashboard.html +++ b/lms/templates/courseware/instructor_dashboard.html @@ -33,6 +33,10 @@ table.stat_table td { border-color: #666666; background-color: #ffffff; } +.divScroll { + height: 200px; + overflow: scroll; +} a.selectedmode { background-color: yellow; } @@ -176,21 +180,25 @@ function goto( mode)

- Students who attempted at least one exercise: - - +

Students who attempted at least one exercise:

+ +
+
ModuleNumber of students
+ % for k,v in analytics_json['data'].items(): % endfor
ModuleNumber of students
${k} ${v}
+ +

- Daily activity: - - +

Daily activity:

+
DayNumber of students
+ % for k,v in daily_activity_json['data'].items():
DayNumber of students
${k} ${v}