From 86121a3e33592ac5639f1848037dd36b3a357902 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Wed, 17 Feb 2021 16:01:41 +0100 Subject: [PATCH] ### 0.0.17 Release * Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise * Fixed #128 add fields from csv to RkiLandkreiseImport * Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021 * Fixed #140 move WhoImport to RKI in: rk_service_import.py * Fixed #125 implement RkiLandkreise * Fixed #126 implement RkiBundeslaenderImport ### 0.0.18 Release * Fixed #39 SQLalchemy instead of SQL: AllModelClasses.remove_all() * Fixed #40 SQLalchemy instead of SQL: EcdcImport.get_date_rep() * Fixed #41 SQLalchemy instead of SQL: EcdcImport.get_countries_of_continent() * Fixed #107 SQLalchemy instead of SQL in: EcdcImport.get_countries_of_continent * Fixed #109 SQLalchemy instead of SQL in: EcdcImport.get_date_rep * Fixed #110 SQLalchemy instead of SQL in: EcdcImport.get_continent --- .../who/templates/who/country/who_country_one_table.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_table.html b/src/covid19/blueprints/who/templates/who/country/who_country_one_table.html index 64ddebe9..f8537ede 100644 --- a/src/covid19/blueprints/who/templates/who/country/who_country_one_table.html +++ b/src/covid19/blueprints/who/templates/who/country/who_country_one_table.html @@ -74,7 +74,7 @@ </a> </td> <th> - <a href="{{ url_for('who.url_who_region', country_id=who_global_data.country.region.id) }}"> + <a href="{{ url_for('who.url_who_region', region_id=who_global_data.country.region.id) }}"> {{ who_global_data.country.region.region }} </a> </th> -- GitLab