add sidebar column; fixed main column float bug

This commit is contained in:
Tom Giannattasio
2012-11-26 13:26:49 -05:00
parent f32388f2af
commit 261c43aade
2 changed files with 21 additions and 16 deletions

View File

@@ -4,6 +4,7 @@
}
.main-column {
clear: both;
float: left;
width: 70%;
}

View File

@@ -11,20 +11,19 @@
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
var course_updates = new CMS.Models.CourseUpdateCollection();
course_updates.reset(${course_updates|n});
course_updates.urlbase = '${url_base}';
var editor = new CMS.Views.CourseInfoEdit({
el: $('.main-wrapper'),
model : new CMS.Models.CourseInfo({
courseId : '${context_course.location}',
updates : course_updates,
// FIXME add handouts
handouts : null})
});
editor.render();
var editor = new CMS.Views.CourseInfoEdit({
el: $('.main-wrapper'),
model : new CMS.Models.CourseInfo({
courseId : '${context_course.location}',
updates : course_updates,
// FIXME add handouts
handouts : null})
});
editor.render();
});
</script>
</%block>
@@ -33,12 +32,17 @@
<div class="main-wrapper">
<div class="inner-wrapper">
<h1>Course Info</h1>
<article class="unit-body window" id="course-update-view">
<h2>Updates</h2>
<a href="#" class="new-update-button">New Update</a>
<ol class="update-list" id="course-update-list"></ol>
<!-- probably replace w/ a vertical where each element of the vertical is a separate update w/ a date and html field -->
</article>
<div class="main-column">
<article class="unit-body window" id="course-update-view">
<h2>Updates</h2>
<a href="#" class="new-update-button">New Update</a>
<ol class="update-list" id="course-update-list"></ol>
<!-- probably replace w/ a vertical where each element of the vertical is a separate update w/ a date and html field -->
</article>
</div>
<div class="sidebar window">
handouts go here
</div>
</div>
</div>
</div>