Restore the ability to drag at any level inside a vertical and clean up templates.

This commit is contained in:
cahrens
2014-04-14 11:41:05 -04:00
parent c1fd0ca34e
commit 8e00f6dc3b
4 changed files with 37 additions and 16 deletions

View File

@@ -17,6 +17,22 @@ class VerticalModule(VerticalFields, XModule):
''' Layout module for laying out submodules vertically.'''
def student_view(self, context):
# When rendering a Studio preview, use a different template to support drag and drop.
if context and context['runtime_type'] == 'studio':
return self.studio_preview_view(context)
return self.render_view(context, 'vert_module.html')
def studio_preview_view(self, context):
"""
Renders the Studio preview view, which supports drag and drop.
"""
return self.render_view(context, 'vert_module_studio_view.html')
def render_view(self, context, template_name):
"""
Helper method for rendering student_view and the Studio version.
"""
fragment = Fragment()
contents = []
@@ -29,7 +45,7 @@ class VerticalModule(VerticalFields, XModule):
'content': rendered_child.content
})
fragment.add_content(self.system.render_template('vert_module.html', {
fragment.add_content(self.system.render_template(template_name, {
'items': contents
}))
return fragment