From fefce4a6401837d1af8a0985c2fd797a67f9c7d8 Mon Sep 17 00:00:00 2001
From: HanseGucker <joniweth@gmx.de>
Date: Sun, 20 Jan 2019 17:09:34 +0100
Subject: [PATCH] Bug fix in timetable (missing "col s2" div)

---
 schoolapps/timetable/templates/timetable/plan.html | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/schoolapps/timetable/templates/timetable/plan.html b/schoolapps/timetable/templates/timetable/plan.html
index af57930dd..468fd5489 100755
--- a/schoolapps/timetable/templates/timetable/plan.html
+++ b/schoolapps/timetable/templates/timetable/plan.html
@@ -135,7 +135,9 @@
                 </div>
                 {% for col in row %}
                     {# A lesson #}
-                    {% include "timetable/lesson.html" %}
+                    <div class="col s2">
+                        {% include "timetable/lesson.html" %}
+                    </div>
                 {% endfor %}
             </div>
         {% endfor %}
-- 
GitLab