home · contact · privacy
Horizontale "all of Berlin" header in HTML table.
[berlin-corona-table] / enhance_table.py
index 5c22f8d8a239cb90a6905654c2a19073dd18561a..66614c36433a9e64422fe1768ee11ef217624fde 100755 (executable)
@@ -135,17 +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_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 style="writing-mode: vertical-rl; '
-              'transform: rotate(180deg);">%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)