Return a header for a week as a table row.
(self)
| 516 | return f'<th class="{self.cssclasses_weekday_head[day]}">{day_abbr[day]}</th>' |
| 517 | |
| 518 | def formatweekheader(self): |
| 519 | """ |
| 520 | Return a header for a week as a table row. |
| 521 | """ |
| 522 | s = ''.join(self.formatweekday(i) for i in self.iterweekdays()) |
| 523 | return f'<tr>{s}</tr>' |
| 524 | |
| 525 | def formatmonthname(self, theyear, themonth, withyear=True): |
| 526 | """ |
no test coverage detected