Skip to content
Snippets Groups Projects
Commit 525e0192 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

### 0.0.6 Release

* Fixed #6 data of all reported countries for WHO date reported
* Fixed #7 WHO Countries all - data for Country
parent 25c3575f
No related branches found
No related tags found
No related merge requests found
...@@ -58,8 +58,11 @@ ...@@ -58,8 +58,11 @@
### 0.0.6 Release ### 0.0.6 Release
* Fixed #6 data of all reported countries for WHO date reported * Fixed #6 data of all reported countries for WHO date reported
* Fixed #7 WHO Countries all - data for Country
### 0.0.7 Release
* Issue #3 ORM: 3NF for ecdc_europa_data_import * Issue #3 ORM: 3NF for ecdc_europa_data_import
* Issue #4 data update for 3NF ecdc_europa_data_import * Issue #4 data update for 3NF ecdc_europa_data_import
### 0.0.7 Release ### 0.0.8 Release
* Issue #5 Visual Graphs for Data per Countries order by Date * Issue #5 Visual Graphs for Data per Countries order by Date
...@@ -153,6 +153,7 @@ def url_who_region_all(page=1): ...@@ -153,6 +153,7 @@ def url_who_region_all(page=1):
@app.route('/who/region/<int:region_id>/page/<int:page>') @app.route('/who/region/<int:region_id>/page/<int:page>')
@app.route('/who/region/<int:region_id>') @app.route('/who/region/<int:region_id>')
def url_who_region_countries(region_id, page=1): def url_who_region_countries(region_id, page=1):
who_region = None
page_info = ApplicationPage("Countries", "WHO Region") page_info = ApplicationPage("Countries", "WHO Region")
try: try:
who_region = WhoRegion.get_by_id(region_id) who_region = WhoRegion.get_by_id(region_id)
...@@ -170,6 +171,8 @@ def url_who_region_countries(region_id, page=1): ...@@ -170,6 +171,8 @@ def url_who_region_countries(region_id, page=1):
page_info=page_info) page_info=page_info)
@app.route('/who/country/<int:country_id>/page/<int:page>')
@app.route('/who/country/<int:country_id>')
@app.route('/who/region/country/<int:country_id>/page/<int:page>') @app.route('/who/region/country/<int:country_id>/page/<int:page>')
@app.route('/who/region/country/<int:country_id>') @app.route('/who/region/country/<int:country_id>')
def url_who_region_country(country_id, page=1): def url_who_region_country(country_id, page=1):
......
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