--- a/web/views/timetable.py Tue Aug 25 18:47:25 2009 +0200
+++ b/web/views/timetable.py Wed Aug 26 00:02:57 2009 +0200
@@ -133,7 +133,7 @@
""" render column headers """
self.w(u'<tr class="header">\n')
- self.w(u'<th class="ttdate"> </th>\n')
+ self.w(u'<th class="ttdate"> </th>\n')
columns = []
for user, width in zip(users, widths):
self.w(u'<th colspan="%s">' % max(MIN_COLS, width))
@@ -191,13 +191,13 @@
task_descr, first_row = value
if first_row:
url = xml_escape(task_descr.task.absolute_url(vid="edition"))
- self.w(u'<td rowspan="%d" class="%s %s" onclick="document.location=\'%s\'"> <div>' % (
+ self.w(u'<td rowspan="%d" class="%s %s" onclick="document.location=\'%s\'"> <div>' % (
task_descr.lines, task_descr.color, filled_klasses[kj], url))
task_descr.task.view('tooltip', w=self.w)
self.w(u'</div></td>')
else:
if empty_line:
- self.w(u'<td class="ttempty"> </td>')
+ self.w(u'<td class="ttempty"> </td>')
else:
- self.w(u'<td class="%s"> </td>' % empty_klasses[kj] )
+ self.w(u'<td class="%s"> </td>' % empty_klasses[kj] )
self.w(u'</tr>\n')