From f0b0f4ca5a183a9d468a4d071565024485ddfcab Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Sat, 30 Jan 2021 21:09:54 +0100 Subject: [PATCH] ### 0.0.13 Release * Fixed #49 EuropeServiceUpdate.__update_data_short() (wontfix) * Fixed #52 download vaccination timeline data file * Fixed #53 import vaccination timeline data file into db * Fixed #54 /vaccination/imported * Fixed #57 frontend: use npm for handling 3rdParty css and javascript modules like jQuery, Bootstrap * Fixed #58 frontend: remove jumbotron from all pageheader, put jumbotron as main content on home page * Fixed #47 major refactoring: Routes from app.py to org...who,europe,... (Doublette von #65) * Fixed #48 major refactoring: Tasks from server_mq.py to org...who,europe,... (Doublette von #65) * Fixed #64 major refactoring: create two packages: for web app and for celery worker * Issue #65 major refactoring: add flask-blueprints for admin, common, europe, rki, vaccination, who ### 0.0.14 Release * Issue #66 frontend: migrate to Bootstrap Theme sb-admin-angular * Issue #67 implement Flask-Login ### 0.0.15 Release * Issue #5 Visual Graphs for Data per Countries order by Date * Issue #59 frontend: add correct breadcrumb to every page * Issue #60 frontend: better design for tables * Issue #61 frontend: better design for navtabs * Issue #62 frontend: better design for pages * Issue #63 frontend: add footer design ### 0.0.16 Release * Issue #28 /admin/database/import * 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() --- .../templates/vaccination/vaccination_info.html | 2 +- .../templates/vaccination/vaccination_tasks.html | 2 +- .../vaccination/vaccination_timeline_germany.html | 2 +- covid19/templates/common/fragment_navbar.html | 10 +++++----- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/covid19/blueprints/vaccination/templates/vaccination/vaccination_info.html b/covid19/blueprints/vaccination/templates/vaccination/vaccination_info.html index 614e1d06..a2dc028b 100644 --- a/covid19/blueprints/vaccination/templates/vaccination/vaccination_info.html +++ b/covid19/blueprints/vaccination/templates/vaccination/vaccination_info.html @@ -6,7 +6,7 @@ {% block navigation_navtabs %} - {% include 'vaccination/fragments/fragments/fragment_vaccination_navtabs.html' %} + {% include 'vaccination/fragments/fragment_vaccination_navtabs.html' %} {% endblock %} diff --git a/covid19/blueprints/vaccination/templates/vaccination/vaccination_tasks.html b/covid19/blueprints/vaccination/templates/vaccination/vaccination_tasks.html index da60b047..ebf1cfd1 100644 --- a/covid19/blueprints/vaccination/templates/vaccination/vaccination_tasks.html +++ b/covid19/blueprints/vaccination/templates/vaccination/vaccination_tasks.html @@ -5,7 +5,7 @@ {% endblock %} {% block navigation_navtabs %} - {% include 'vaccination/fragments/fragments/fragment_vaccination_navtabs.html' %} + {% include 'vaccination/fragments/fragment_vaccination_navtabs.html' %} {% endblock %} {% block main_container %} diff --git a/covid19/blueprints/vaccination/templates/vaccination/vaccination_timeline_germany.html b/covid19/blueprints/vaccination/templates/vaccination/vaccination_timeline_germany.html index d4330a26..0b0da8a9 100644 --- a/covid19/blueprints/vaccination/templates/vaccination/vaccination_timeline_germany.html +++ b/covid19/blueprints/vaccination/templates/vaccination/vaccination_timeline_germany.html @@ -8,7 +8,7 @@ {% block navigation_navtabs %} - {% include 'vaccination/fragments/fragments/fragment_vaccination_navtabs.html' %} + {% include 'vaccination/fragments/fragment_vaccination_navtabs.html' %} {% endblock %} diff --git a/covid19/templates/common/fragment_navbar.html b/covid19/templates/common/fragment_navbar.html index 3719ba9f..414b4ecb 100644 --- a/covid19/templates/common/fragment_navbar.html +++ b/covid19/templates/common/fragment_navbar.html @@ -13,15 +13,15 @@ <a class="nav-link" href="/">Home <span class="sr-only">(current)</span></a> </li> - {% include '../../blueprints/who/templates/who/fragments/fragment_who_navbar_dropdown.html' %} + {% include 'who/fragments/fragment_who_navbar_dropdown.html' %} - {% include '../../blueprints/europe/templates/europe/fragments/fragment_europe_navbar_dropdown.html' %} + {% include 'europe/fragments/fragment_europe_navbar_dropdown.html' %} - {% include '../../blueprints/vaccination/templates/vaccination/fragments/fragment_vaccination_navbar_dropdown.html' %} + {% include 'vaccination/fragments/fragment_vaccination_navbar_dropdown.html' %} - {% include '../../blueprints/rki/templates/rki/fragment_rki_navbar_dropdown.html' %} + {% include 'rki/fragment_rki_navbar_dropdown.html' %} - {% include '../../blueprints/admin/templates/admin/fragments/fragment_admin_navbar_dropdown.html' %} + {% include 'admin/fragments/fragment_admin_navbar_dropdown.html' %} <li class="nav-item"> <a class="nav-link" href="#">Link</a> -- GitLab