From bdf3c92383e8608998c78e35b49c4b94fa7fcec5 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Wed, 17 Feb 2021 10:07:19 +0100 Subject: [PATCH] ### 0.0.17 Release * Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise * Fixed #128 add fields from csv to RkiLandkreiseImport * Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021 * Fixed #140 move WhoImport to RKI in: rk_service_import.py * Fixed #125 implement RkiLandkreise * Fixed #126 implement RkiBundeslaenderImport ### 0.0.18 Release * Fixed #39 SQLalchemy instead of SQL: AllModelClasses.remove_all() * Fixed #40 SQLalchemy instead of SQL: EcdcImport.get_date_rep() * Fixed #41 SQLalchemy instead of SQL: EcdcImport.get_countries_of_continent() * Fixed #107 SQLalchemy instead of SQL in: EcdcImport.get_countries_of_continent * Fixed #109 SQLalchemy instead of SQL in: EcdcImport.get_date_rep * Fixed #110 SQLalchemy instead of SQL in: EcdcImport.get_continent --- .../admin/templates/admin/index.html | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/covid19/blueprints/admin/templates/admin/index.html diff --git a/src/covid19/blueprints/admin/templates/admin/index.html b/src/covid19/blueprints/admin/templates/admin/index.html new file mode 100644 index 00000000..f378bf30 --- /dev/null +++ b/src/covid19/blueprints/admin/templates/admin/index.html @@ -0,0 +1,33 @@ +{% extends 'admin/master.html' %} + +{% block body %} + <p>Hello world</p> + {% include 'admin/fragments/fragment_admin_navtabs.html' %} + <div class="row"> + <div class="col"> + <h3>Admin :: Tasks</h3> + <div class="btn-group-vertical" role="group" aria-label="Views"> + <a class="btn btn-secondary btn-lg btn-block text-left" + href="{{ url_for( 'admin.url_alive_message_start') }}" + role="button">Admin :: alive message</a> + <a class="btn btn-primary btn-lg btn-block text-left" + href="{{ url_for( 'admin.url_admin_database_drop') }}" + role="button">Admin :: database :: drop_create</a> + <a class="btn btn-primary btn-lg btn-block text-left" + href="{{ url_for( 'admin.url_admin_database_dropcreate_only') }}" + role="button">Admin :: database :: drop_create :: only</a> + <a class="btn btn-secondary btn-lg btn-block text-left" + href="{{ url_for( 'admin.url_admin_database_import') }}" + role="button">Admin :: database :: import</a> + <a class="btn btn-primary btn-lg btn-block text-left" + href="{{ url_for( 'admin.url_admin_database_dump') }}" + role="button">Admin :: database :: dump</a> + </div> + </div> + </div> +{% endblock %} + + + + + -- GitLab