home · contact · privacy
Remain consistent in choice of abbrevations among output versions.
authorChristian Heller <c.heller@plomlompom.de>
Fri, 3 Jul 2020 23:35:42 +0000 (01:35 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 3 Jul 2020 23:35:42 +0000 (01:35 +0200)
enhance_table.py

index 25fcd08048705eab18309283ec51d39a5d716a91..cfb5eff9dba7e1fde9cb7709d2f00cc9f4c3cc51 100755 (executable)
@@ -135,6 +135,7 @@ if output_type == 'html':
 <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; }
@@ -149,9 +150,6 @@ if output_type == 'html':
 <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]
@@ -170,10 +168,10 @@ if output_type == 'html':
         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]