From b2afbdcf5351cf2aa7898241baa7ab081814d522 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Sat, 4 Jul 2020 01:16:01 +0200 Subject: [PATCH] Completely redesign HTML table. --- enhance_table.py | 56 +++++++++++++++++++++++++----------------------- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/enhance_table.py b/enhance_table.py index 5926db0..c670739 100755 --- a/enhance_table.py +++ b/enhance_table.py @@ -135,12 +135,10 @@ if output_type == 'html': Berlin's Corona infection numbers, development by districts @@ -148,27 +146,35 @@ thead th { position: sticky; top: 0; background-color: white; }

Berlin's Corona infection numbers, development by districts

Updated daily at 9pm based on data from the "Senatsverwaltung für Gesundheit, Pflege und Gleichstellung". Source code. Text view optimized for terminal curl.

- -""") +""") 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] - if sum_district == district: - print('' % long_form) - else: - # Wrap in div because the vertical orientation otherwise fails - # in Chromium. - print('' % long_form) + # Wrap in div because the vertical orientation otherwise fails + # in Chromium. + print('' % long_form) + print('') + print('') + # In Chromium, the th only stay fixed if also given this class. + print('') + print('') + for district in sorted_districts: + print('' % district) print('') - print('') for date in sorted_dates: print('') print('' % date) - long_wsum = translate['wsum'] - long_wavg = translate['wavg'] - long_winc = translate['winc'] + print('') for district in sorted_districts: district_data = db[district][date] week_sum = week_avg = week_inc = '(not enough data)' @@ -180,16 +186,12 @@ thead th { position: sticky; top: 0; background-color: white; } if 'week_incidence' in district_data: week_inc = '%.1f' % district_data['week_incidence'] print('') print('') print('
date%s
%s
%s
date%s
%s') + print('') + print('' % long_wsum) + print('' % long_wavg) + print('' % long_winc) + print('
+
Σ
Ø
i
') - print('%s' % new_infections) - if district != sum_district: - print('
') - print('') - print('' % (long_wsum, week_sum)) - print('' % (long_wavg, week_avg)) - print('' % (long_winc, week_inc)) + print('
%s%s
%s%s
%s%s
') + print('' % new_infections) + print('' % week_sum) + print('' % week_avg) + print('' % week_inc) print('
%s
%s
%s
%s
') - if district != sum_district: - print('
') print('
') -- 2.30.2