From 1f25b59fbc28ba30f71d94c3104e2019a2844411 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Fri, 22 Jan 2021 17:38:08 +0100 Subject: [PATCH] ### 0.0.11 Release * Issue #43 /europe/date_reported * Issue #44 /europe/continent * Issue #45 /europe/country * Issue #46 /europe/data * Issue #39 SQLalchemy instead of SQL: AllModelClasses.remove_all() * Issue #40 SQLalchemy instead of SQL: EuropeDataImportTable.get_date_rep() * Issue #41 SQLalchemy instead of SQL: EuropeDataImportTable.get_countries_of_continent() * Issue #42 SQLalchemy instead of SQL: WhoGlobalDataImportTable.get_new_dates_as_array() * Issue #47 refactor Routes from app.py to org...who,europe,... * Issue #48 refactor Tasks from server_mq.py to org...who,europe,... --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index 4739e172..66a2fea2 100644 --- a/app.py +++ b/app.py @@ -278,7 +278,7 @@ def url_europe_date_reported(page=1): page_info = ApplicationPage('Europe', "date_reported") page_data = EuropeDateReported.get_all_as_page(page) return render_template( - 'europe/europe_date_reported.html', + 'europe/europe_date_reported_all.html', page_data=page_data, page_info=page_info) @@ -289,7 +289,7 @@ def url_europe_continent(page=1): page_info = ApplicationPage('Europe', "continent") page_data = EuropeContinent.get_all_as_page(page) return render_template( - 'europe/europe_continent.html', + 'europe/europe_continent_all.html', page_data=page_data, page_info=page_info) @@ -300,7 +300,7 @@ def url_europe_country(page=1): page_info = ApplicationPage('Europe', "country") page_data = EuropeCountry.get_all_as_page(page) return render_template( - 'europe/europe_country.html', + 'europe/europe_country_all.html', page_data=page_data, page_info=page_info) -- GitLab