From: Christian Heller <c.heller@plomlompom.de> Date: Fri, 3 Jul 2020 20:15:25 +0000 (+0200) Subject: Horizontale "all of Berlin" header in HTML table. X-Git-Url: https://plomlompom.com/repos/new_day?a=commitdiff_plain;h=e8850998bd3f831bf1291b0d5ea02d53cc7f2802;p=berlin-corona-table Horizontale "all of Berlin" header in HTML table. --- diff --git a/enhance_table.py b/enhance_table.py index a969895..66614c3 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -135,18 +135,21 @@ if output_type == 'html': print('<style>') print('table, tr, th, td { border: 1px solid black; }') print('.day_row:nth-child(7n+2) { background-color: yellow; }') - print('.district_header { writing-mode: vertical-rl; ' + print('.district_name { writing-mode: vertical-rl; ' 'transform: rotate(180deg); }') print('</style>') print('<table>') print('<tr>') print('<th>date</th>') + sorted_dates.reverse() + sum_district = sorted_districts[-1] for district in sorted_districts: long_form = translate[district] - print('<th class="district_header">%s</th>' % long_form) + if sum_district == district: + print('<th>%s</th>' % long_form) + else: + print('<th class="district_name">%s</th>' % long_form) print('</tr>') - sorted_dates.reverse() - sum_district = sorted_districts[-1] for date in sorted_dates: print('<tr class="day_row">') print('<td>%s</td>' % date)