diff --git a/src/covid19/blueprints/application/templates/application/page_layout.html b/src/covid19/blueprints/application/templates/application/page_layout.html index 8731c2848ba28456fa085855c149deaf594fb09f..39cf9b274d1c7a35f21ead7d40fcdac65a482278 100644 --- a/src/covid19/blueprints/application/templates/application/page_layout.html +++ b/src/covid19/blueprints/application/templates/application/page_layout.html @@ -13,13 +13,13 @@ <header> <div class="container tw_padding"> - {% include 'application/fragment_navbar.html' %} + {% include 'application/fragments/fragment_navbar.html' %} </div> </header> <section> <div class="container tw_padding"> - {% include 'application/fragment_navtabs.html' %} + {% include 'application/fragments/fragment_navtabs.html' %} </div> <div class="container"> {% block navigation_navtabs %}{% endblock %} @@ -31,7 +31,7 @@ <main> <div class="container tw_padding"> - {% include 'application/fragment_flashed_messages.html' %} + {% include 'application/fragments/fragment_flashed_messages.html' %} </div> <div class="container tw_padding"> {% block main_container %}{% endblock %} diff --git a/src/covid19/blueprints/rki_bundeslaender/templates/rki_bundeslaender/rki_bundeslaender_imported.html b/src/covid19/blueprints/rki_bundeslaender/templates/rki_bundeslaender/rki_bundeslaender_imported.html index 6345530670a67d92ae5b23e71c3c32432c516511..5c9d5b976ad5c95b7543789a16b8e84d6a077fb1 100644 --- a/src/covid19/blueprints/rki_bundeslaender/templates/rki_bundeslaender/rki_bundeslaender_imported.html +++ b/src/covid19/blueprints/rki_bundeslaender/templates/rki_bundeslaender/rki_bundeslaender_imported.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_breadcrumb %} <!-- TODO: implement navigation_breadcrumb in .html --> diff --git a/src/covid19/blueprints/rki_landkreise/templates/rki_landkreise/rki_landkreise_imported.html b/src/covid19/blueprints/rki_landkreise/templates/rki_landkreise/rki_landkreise_imported.html index bfdcf7f9111be9e7e08f868f0b67f35225208dde..cb28f68eb66e020abcc705b71a5351cc736882ed 100644 --- a/src/covid19/blueprints/rki_landkreise/templates/rki_landkreise/rki_landkreise_imported.html +++ b/src/covid19/blueprints/rki_landkreise/templates/rki_landkreise/rki_landkreise_imported.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_breadcrumb %} <!-- TODO: implement navigation_breadcrumb in .html --> diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_data.html b/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_data.html index 6a37b46553a4e9187ae488f9a2d79a2b3a0f1e2e..b180188a05f0c544fb434e1d4d4416c4079f1dd2 100644 --- a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_data.html +++ b/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_data.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_breadcrumb %} <!-- TODO: implement navigation_breadcrumb in .html --> diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_import.html b/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_import.html index 6a37b46553a4e9187ae488f9a2d79a2b3a0f1e2e..b180188a05f0c544fb434e1d4d4416c4079f1dd2 100644 --- a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_import.html +++ b/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_import.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_breadcrumb %} <!-- TODO: implement navigation_breadcrumb in .html --> diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one.html b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one.html index 17d942f03f9b6f6f3e39eee67eb3bb07b005fad2..dcdfeb819f5054929ff628b55ac206e3a90986e8 100644 --- a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one.html +++ b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_jumbotron %}{% endblock %} diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative.html b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative.html index 03f5fd2aeca623b52f8eeca41cac53fe84fd7da0..1ed4ab5acf67f69ef8651d6b9e981ceb18347331 100644 --- a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative.html +++ b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_jumbotron %}{% endblock %} diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new.html b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new.html index 851847f5a2fd6ee248ea92345efb54cc3a99de6f..374082fdaac122fccca642cd96b83de03f68de50 100644 --- a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new.html +++ b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_jumbotron %}{% endblock %} diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative.html b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative.html index 03f5fd2aeca623b52f8eeca41cac53fe84fd7da0..1ed4ab5acf67f69ef8651d6b9e981ceb18347331 100644 --- a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative.html +++ b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_jumbotron %}{% endblock %} diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_new.html b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_new.html index 6adaa45de2ccc07e67bab7993b1ecf4602f5a71c..685ad739a1f7fd8ff7721956e1aa93e33883d519 100644 --- a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_new.html +++ b/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_new.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_jumbotron %}{% endblock %} diff --git a/src/covid19/blueprints/who/templates/who/who_imported.html b/src/covid19/blueprints/who/templates/who/who_imported.html index 1da77b8791622c6f99803fb3d20d0a7f52731e1a..8ecfb4bc47bbd1060dca7d5ccb1bdf7ac36f79da 100644 --- a/src/covid19/blueprints/who/templates/who/who_imported.html +++ b/src/covid19/blueprints/who/templates/who/who_imported.html @@ -1,6 +1,6 @@ {% extends 'application/page_layout.html' %} -{% include 'application/fragment_pagination.html' %} +{% include 'application/fragments/fragment_pagination.html' %} {% block navigation_jumbotron %}{% endblock %}