From 86247edb4387ba473df145e460e096e1d52c171c Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Wed, 26 May 2021 09:29:07 +0200 Subject: [PATCH] Refactoring: vaccination --- .../templates/rki/bundesland/all/rki_bundesland_all.html | 2 +- .../templates/rki/bundesland/one/rki_bundesland_one.html | 2 +- .../templates/rki/landkreis/all/rki_landkreis_all_table.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/flask_covid19/blueprints/data_rki/templates/rki/bundesland/all/rki_bundesland_all.html b/src/flask_covid19/blueprints/data_rki/templates/rki/bundesland/all/rki_bundesland_all.html index bfb621c3..0d2d97ea 100644 --- a/src/flask_covid19/blueprints/data_rki/templates/rki/bundesland/all/rki_bundesland_all.html +++ b/src/flask_covid19/blueprints/data_rki/templates/rki/bundesland/all/rki_bundesland_all.html @@ -2,7 +2,7 @@ {% block content %} {{super()}} - {% include 'owid/navigation/owid_navtabs.html' %} + {% include 'rki/navigation/rki_navtabs.html' %} <div class="container"> <div class="row"> diff --git a/src/flask_covid19/blueprints/data_rki/templates/rki/bundesland/one/rki_bundesland_one.html b/src/flask_covid19/blueprints/data_rki/templates/rki/bundesland/one/rki_bundesland_one.html index 95b53d0d..f0d0aad3 100644 --- a/src/flask_covid19/blueprints/data_rki/templates/rki/bundesland/one/rki_bundesland_one.html +++ b/src/flask_covid19/blueprints/data_rki/templates/rki/bundesland/one/rki_bundesland_one.html @@ -2,7 +2,7 @@ {% block content %} {{super()}} - {% include 'owid/navigation/owid_navtabs.html' %} + {% include 'rki/navigation/rki_navtabs.html' %} <div class="container"> <div class="row"> diff --git a/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table.html b/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table.html index ff09454b..c201015b 100644 --- a/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table.html +++ b/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table.html @@ -7,7 +7,7 @@ {% for rki_landkreis in page_data.items %} <tr> <td> - <a href="{{ url_for( 'owid.url_rki_bundesland_all' ) }}"> + <a href="{{ url_for( 'rki.url_rki_bundesland_all' ) }}"> {{ rki_landkreis.location_group.location_group }} </a> </td> -- GitLab