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

Refactoring: vaccination

parent 3d3903be
No related branches found
No related tags found
1 merge request!162Refactoring 2021 05 20 start
...@@ -73,37 +73,37 @@ ...@@ -73,37 +73,37 @@
<a href="{{ url_for( 'ecdc.url_ecdc_date_reported_one_notification_rate', <a href="{{ url_for( 'ecdc.url_ecdc_date_reported_one_notification_rate',
europe_date_reported_id=europe_date_reported.id, europe_date_reported_id=europe_date_reported.id,
page=page_data.page) }}"> page=page_data.page) }}">
<a href="/ecdc/date_reported/{{ ecdc_data.ecdc_datereported.id }}"> <a href="/ecdc/date_reported/{{ ecdc_data.date_reported.id }}">
{{ ecdc_data.ecdc_datereported.get_name_for_datum() }} {{ ecdc_data.date_reported.datum }}
</a> </a>
</td> </td>
<td> <td>
<a href="/ecdc/date_reported/{{ ecdc_data.ecdc_datereported.id }}"> <a href="/ecdc/date_reported/{{ ecdc_data.date_reported.id }}">
{{ ecdc_data.ecdc_datereported.year_week }} {{ ecdc_data.date_reported.year_week }}
</a> </a>
</td> </td>
<td>{{ ecdc_data.deaths }}</td> <td>{{ ecdc_data.deaths }}</td>
<td>{{ ecdc_data.cases }}</td> <td>{{ ecdc_data.cases }}</td>
<td>{{ ecdc_data.cumulative_number_for_14_days_of_covid19_cases_per_100000 }}</td> <td>{{ ecdc_data.cumulative_number_for_14_days_of_covid19_cases_per_100000 }}</td>
<td> <td>
<a href="/ecdc/country/{{ ecdc_data.ecdc_country.id }}"> <a href="/ecdc/country/{{ ecdc_data.location.id }}">
{{ ecdc_data.ecdc_country.countries_and_territories }} {{ ecdc_data.location.location }}
</a> </a>
</td> </td>
<td>{{ ecdc_data.ecdc_country.pop_data_2019 }}</td> <td>{{ ecdc_data.location.pop_data_2019 }}</td>
<td> <td>
<a href="/ecdc/country/{{ ecdc_data.ecdc_country.id }}"> <a href="/ecdc/country/{{ ecdc_data.location.id }}">
{{ ecdc_data.ecdc_country.geo_id }} {{ ecdc_data.location.geo_id }}
</a> </a>
</td> </td>
<td> <td>
<a href="/ecdc/country/{{ ecdc_data.ecdc_country.id }}"> <a href="/ecdc/country/{{ ecdc_data.location.id }}">
{{ ecdc_data.ecdc_country.country_territory_code }} {{ ecdc_data.location.location_code }}
</a> </a>
</td> </td>
<td> <td>
<a href="/ecdc/continent/{{ ecdc_data.ecdc_country.continent.id }}"> <a href="/ecdc/continent/{{ ecdc_data.location.location_group.id }}">
{{ ecdc_data.ecdc_country.continent.region }} {{ ecdc_data.location.location_group.location_group }}
</a> </a>
</td> </td>
</tr> </tr>
......
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