From 4a6d90e15c25fc527d39a18eceff4fe91df0623d Mon Sep 17 00:00:00 2001
From: Andreas <andreasv@fsmpi.rwth-aachen.de>
Date: Mon, 12 Sep 2016 02:49:15 +0200
Subject: [PATCH] no more links on schedule printouts

---
 templates/schedule.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/schedule.html b/templates/schedule.html
index 4feac2c..af913fc 100644
--- a/templates/schedule.html
+++ b/templates/schedule.html
@@ -24,7 +24,7 @@
 						{% for l in d.lectures|selectattr('schedule_col','equalto',i) if (((l.time.time() > t) and (l.time.time() < times[time_loop.index+1])) != (l.time.time() == t ) ) %}
 						<td rowspan="{{l.duration / 15}}" style="background: lightgrey;">
 							<p class="small">
-							<strong><a href="{{url_for('course', handle=l.handle)}}#lecture-{{l.id}}">{{l.short}}</a></strong><br>
+							<strong><a class="hidden-print" href="{{url_for('course', handle=l.handle)}}#lecture-{{l.id}}">{{l.short}}</a><span class="visible-print-inline">{{l.short}}</span></strong><br>
 								{{l.time.strftime("%H:%M")}} - {{l.time_end.strftime("%H:%M")}}<br>
 								{{l.place}}</p>
 						</td>
-- 
GitLab