# HG changeset patch # User Paul Boddie # Date 1444064449 -7200 # Node ID 94129cd1cbdda19250e1cd64358e808f15f9387f # Parent 1a3b529fc4fd2bf7576848378695d6579e863b75 Fixed counter-proposal table layout. diff -r 1a3b529fc4fd -r 94129cd1cbdd imipweb/event.py --- a/imipweb/event.py Mon Oct 05 17:20:30 2015 +0200 +++ b/imipweb/event.py Mon Oct 05 19:00:49 2015 +0200 @@ -559,12 +559,11 @@ identifier = "%s-%s" % (format_datetime(p.get_start_point()), format_datetime(p.get_end_point())) css = identifier == counter and "selected" or "" + page.tr(class_=css) + if first: - page.tr(rowspan=len(periods), class_=css) - page.td(attendee) + page.td(attendee, rowspan=len(periods)) first = False - else: - page.tr(class_=css) start = self.format_datetime(to_timezone(p.get_start(), tzid), "long") end = self.format_datetime(to_timezone(p.get_end(), tzid), "long")