Merge pull request #1805 from MITx/fix/brian/user-on-progress

add user name and email to progress page
This commit is contained in:
brianhw
2013-04-04 10:09:52 -07:00
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: