add user name and email to progress page

This commit is contained in:
Brian Wilson
2013-04-04 12:03:08 -04:00
parent 1b7e552d5d
commit d3e7739b3b
2 changed files with 2 additions and 1 deletions

View File

@@ -630,6 +630,7 @@ def progress(request, course_id, student_id=None):
'courseware_summary': courseware_summary,
'grade_summary': grade_summary,
'staff_access': staff_access,
'student': student,
}
context.update()

View File

@@ -31,7 +31,7 @@ ${progress_graph.body(grade_summary, course.grade_cutoffs, "grade-detail-graph",
<section class="course-info">
<header>
<h1>Course Progress</h1>
<h1>Course Progress for Student '${student.username}' (${student.email})</h1>
</header>
%if not course.disable_progress_graph: