Skip to content
Snippets Groups Projects
Commit 1f25b59f authored by thomaswoehlke's avatar thomaswoehlke
Browse files

### 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,...
parent 4a7ca8e4
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment