use full span12 on schedule edit

This commit is contained in:
James Tauber 2012-08-30 12:17:10 -04:00
parent 746e34cf3c
commit 95d182e528

View file

@ -88,13 +88,16 @@
</style> </style>
{% endblock %} {% endblock %}
{% block body %} {% block body_outer %}
<h1>Schedule Edit</h1> <div class="row">
<div class="span12">
{% for timetable in days %} <h1>Schedule Edit</h1>
<h2>{{ timetable.day.date }}</h2>
{% include "schedule/_grid.html" %} {% for timetable in days %}
{% endfor %} <h2>{{ timetable.day.date }}</h2>
{% include "schedule/_grid.html" %}
{% endfor %}
</div>
</div>
{% endblock %} {% endblock %}