Return a complete week as a table row.
(self, theweek)
| 503 | return f'<td class="{self.cssclasses[weekday]}">{day}</td>' |
| 504 | |
| 505 | def formatweek(self, theweek): |
| 506 | """ |
| 507 | Return a complete week as a table row. |
| 508 | """ |
| 509 | s = ''.join(self.formatday(d, wd) for (d, wd) in theweek) |
| 510 | return f'<tr>{s}</tr>' |
| 511 | |
| 512 | def formatweekday(self, day): |
| 513 | """ |
no test coverage detected