From b77298b2ec89b8457620dd65a82719320a0757ab Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Thu, 11 Oct 2012 09:49:07 -0400 Subject: [PATCH] a 'section' is actually a 'chapter' in previous nomenclature --- cms/djangoapps/contentstore/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/djangoapps/contentstore/views.py b/cms/djangoapps/contentstore/views.py index a5aab97f05..9f3685aeb9 100644 --- a/cms/djangoapps/contentstore/views.py +++ b/cms/djangoapps/contentstore/views.py @@ -143,7 +143,7 @@ def course_index(request, org, course, name): return render_to_response('overview.html', { 'sections': sections, 'parent_location': course.location, - 'new_section_template': Location('i4x', 'edx', 'templates', 'sequential', 'Empty'), + 'new_section_template': Location('i4x', 'edx', 'templates', 'chapter', 'Empty'), 'new_subsection_template': Location('i4x', 'edx', 'templates', 'sequential', 'Empty'), # for now they are the same, but the could be different at some point... 'upload_asset_callback_url': upload_asset_callback_url, 'create_new_unit_template': Location('i4x', 'edx', 'templates', 'vertical', 'Empty')