From 3ce81ee1355bdb76759d6264a6348b539a3db98f Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Wed, 26 May 2021 23:48:45 +0200 Subject: [PATCH] Refactoring: vaccination --- docs/BACKLOG.md | 6 ++++++ .../ecdc/continent/ecdc_continent_all_table.html | 2 +- .../templates/ecdc/country/ecdc_country_all_table.html | 8 ++++---- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/docs/BACKLOG.md b/docs/BACKLOG.md index bf78df55..5c09bdcd 100644 --- a/docs/BACKLOG.md +++ b/docs/BACKLOG.md @@ -348,6 +348,12 @@ * Issue #329 FE NEU: http://127.0.0.1:9090/rki/bundesland/all * Issue #330 FE NEU: http://127.0.0.1:9090/rki/landkreis/all +* Issue #999 FE NEU: +* Issue #999 FE NEU: +* Issue #999 FE NEU: +* Issue #999 FE NEU: +* Issue #999 FE NEU: + ### WHO * ------------------------------------- diff --git a/src/flask_covid19/blueprints/data_ecdc/templates/ecdc/continent/ecdc_continent_all_table.html b/src/flask_covid19/blueprints/data_ecdc/templates/ecdc/continent/ecdc_continent_all_table.html index 27d88e67..7deeec25 100644 --- a/src/flask_covid19/blueprints/data_ecdc/templates/ecdc/continent/ecdc_continent_all_table.html +++ b/src/flask_covid19/blueprints/data_ecdc/templates/ecdc/continent/ecdc_continent_all_table.html @@ -9,7 +9,7 @@ <tr> <td> <a href="{{ url_for( 'ecdc.url_ecdc_continent_one', continent_id=europe_continent.id) }}"> - {{ europe_continent.region }} + {{ europe_continent.location_group }} </a> </td> </tr> diff --git a/src/flask_covid19/blueprints/data_ecdc/templates/ecdc/country/ecdc_country_all_table.html b/src/flask_covid19/blueprints/data_ecdc/templates/ecdc/country/ecdc_country_all_table.html index 300041c2..8a190726 100644 --- a/src/flask_covid19/blueprints/data_ecdc/templates/ecdc/country/ecdc_country_all_table.html +++ b/src/flask_covid19/blueprints/data_ecdc/templates/ecdc/country/ecdc_country_all_table.html @@ -14,7 +14,7 @@ <tr> <td> <a href="{{ url_for('ecdc.url_ecdc_country_one', country_id=europe_country.id) }}"> - {{ europe_country.countries_and_territories }} + {{ europe_country.location }} </a> </td> <td>{{ europe_country.pop_data_2019 }}</td> @@ -25,12 +25,12 @@ </td> <td> <a href="{{ url_for('ecdc.url_ecdc_country_one', country_id=europe_country.id) }}"> - {{ europe_country.country_territory_code }} + {{ europe_country.location_code }} </a> </td> <td> - <a href="{{ url_for('ecdc.url_ecdc_continent_one', country_id=europe_country.continent.id) }}"> - {{ europe_country.continent.region }} + <a href="{{ url_for('ecdc.url_ecdc_continent_one', country_id=europe_country.location_group.id) }}"> + {{ europe_country.location_group.location_group }} </a> </td> </tr> -- GitLab