Commit f7989cb2 by Miles Steele

move to instructor template directory

parent f88b266c
""" """
Instructor Dashboard Views Instructor Dashboard Views
TODO add tracking
""" """
from django_future.csrf import ensure_csrf_cookie from django_future.csrf import ensure_csrf_cookie
...@@ -25,13 +23,12 @@ from student.models import CourseEnrollment ...@@ -25,13 +23,12 @@ from student.models import CourseEnrollment
@ensure_csrf_cookie @ensure_csrf_cookie
@cache_control(no_cache=True, no_store=True, must_revalidate=True) @cache_control(no_cache=True, no_store=True, must_revalidate=True)
def instructor_dashboard_2(request, course_id): def instructor_dashboard_2(request, course_id):
"""Display the instructor dashboard for a course.""" """ Display the instructor dashboard for a course. """
course = get_course_by_id(course_id, depth=None) course = get_course_by_id(course_id, depth=None)
access = { access = {
'admin': request.user.is_staff, 'admin': request.user.is_staff,
# an instructor can manage staff lists
'instructor': has_access(request.user, course, 'instructor'), 'instructor': has_access(request.user, course, 'instructor'),
'staff': has_access(request.user, course, 'staff'), 'staff': has_access(request.user, course, 'staff'),
'forum_admin': has_forum_access( 'forum_admin': has_forum_access(
...@@ -57,7 +54,7 @@ def instructor_dashboard_2(request, course_id): ...@@ -57,7 +54,7 @@ def instructor_dashboard_2(request, course_id):
'sections': sections, 'sections': sections,
} }
return render_to_response('courseware/instructor_dashboard_2/instructor_dashboard_2.html', context) return render_to_response('instructor/instructor_dashboard_2/instructor_dashboard_2.html', context)
""" """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment