From 36501878918eed0ffc4e7319c7c3433cf325634e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Sun, 16 Oct 2016 23:55:27 +0200 Subject: [PATCH] program: min col width --- planning/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planning/utils.py b/planning/utils.py index 061da11..d2df33a 100644 --- a/planning/utils.py +++ b/planning/utils.py @@ -63,7 +63,7 @@ class Program: output = 'Room' room_cell = '%(name)s
%(label)s' for room, colspan in self.cols.items(): - options = ' colspan="%d"' % colspan + options = ' style="min-width: 100px;" colspan="%d"' % colspan output += room_cell % {'name': escape(room.name), 'label': escape(room.label), 'options': options} return '%s' % output