diff --git a/templates/log.html b/templates/log.html
index 188c0c0d0c1c7083d76e2c21dc183126bff6d138..687c9b3a4c10781a0313e16a9f1a63d6062a4ebb 100644
--- a/templates/log.html
+++ b/templates/log.html
@@ -6,26 +6,28 @@
 		<div class="panel-heading">
 			<h1 class="panel-title">Changelog</h1>
 		</div>
-		<table class="table">
-			<tr>
-				<th>Zeit</th>
-				<th>Wer</th>
-				<th>Pfad</th>
-				<th>alter Wert</th>
-				<th>neuer Wert</th>
-				<th></th>
-			</tr>
-			{% for i in changelog %}
+		<div class="table-responsive">
+			<table class="table table-condensed">
 				<tr>
-					<td>{{i.when}}</td>
-					<td>{{i.who}}</td>
-					<td>{{i.path}}</td>
-					<td>"{{i.value_old}}"</td>
-					<td>"{{i.value_new}}"</td>
-					<td><a class="btn btn-default">undo</button></td>
+					<th>Zeit</th>
+					<th>Wer</th>
+					<th>Pfad</th>
+					<th>alter Wert</th>
+					<th>neuer Wert</th>
+					<th></th>
 				</tr>
-			{% endfor %}
-		</table>
+				{% for i in changelog %}
+					<tr>
+						<td>{{i.when}}</td>
+						<td>{{i.who}}</td>
+						<td>{{i.path}}</td>
+						<td>"{{i.value_old}}"</td>
+						<td>"{{i.value_new}}"</td>
+						<td><a class="btn btn-default">undo</button></td>
+					</tr>
+				{% endfor %}
+			</table>
+		</div>
 	</div>
 </div>
 {% endblock %}
diff --git a/templates/schedule.html b/templates/schedule.html
index 2a021eb6c2a662648807a35b43a3909ef43d76a8..45b33f4eaa7ea2b42651a10307b9ae6866ca7c96 100644
--- a/templates/schedule.html
+++ b/templates/schedule.html
@@ -5,7 +5,7 @@
 		<div class="panel-heading">
 			<h1 class="panel-title">Drehplan</h1>
 		</div>
-		<div class="panel-body row">
+		<div class="panel-body row table-responsive">
 			<table class="table-bordered col-xs-12">
 				<tr><th></th>{% for d in days if (d.index < 5) or (d.lectures|length) > 0%}<th colspan="{{d.maxcol}}">{{ d.date.strftime("%A (%d.%m.%Y)") }}</th>{% endfor %}</tr>
 				{% for t in times %}