<html>
<head>
<style>
+th { text-align: left; vertical-align: bottom; }
.day_row:nth-child(7n+3) > td { border-top: 1px solid black; }
.vertical_header { writing-mode: vertical-rl; transform: rotate(180deg); font-weight: normal; }
.fixed_head { position: sticky; top: 0; background-color: white; }
<tr>
<th colspan=2></th>""")
sorted_dates.reverse()
- long_wsum = translate['wsum']
- long_wavg = translate['wavg']
- long_winc = translate['winc']
sum_district = sorted_districts[-1]
for district in sorted_districts:
long_form = translate[district]
print('<tr class="day_row">')
print('<td>%s</td>' % date)
print('<td><table>')
- print('<tr><th><abbr title="new">+</abbr></th></tr>')
- print('<tr><th><abbr title="%s">Σ</abbr></th></tr>' % long_wsum)
- print('<tr><th><abbr title="%s">Ø</abbr></th></tr>' % long_wavg)
- print('<tr><th><abbr title="%s">i</abbr></th></tr>' % long_winc)
+ print('<tr><th><abbr title="new infections counted">new</abbr></th></tr>')
+ for abbr in ['wsum', 'wavg', 'winc']:
+ print('<tr><th><abbr title="%s">%s</abbr></th></tr>' %
+ (translate[abbr], abbr))
print('</table></td>')
for district in sorted_districts:
district_data = db[district][date]