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

### 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
parent 40d60dba
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ def task_admin_database_drop_create(self): ...@@ -48,7 +48,7 @@ def task_admin_database_drop_create(self):
return result return result
@app.route('/') @app_admin.route('/')
def url_admin_index(): def url_admin_index():
page_info = ApplicationPage('Admin', "Covid19 Admin") page_info = ApplicationPage('Admin', "Covid19 Admin")
return render_template( return render_template(
......
...@@ -14,6 +14,9 @@ ...@@ -14,6 +14,9 @@
<a class="dropdown-item" href="{{ url_for( 'app_admin.url_admin_info') }}"> <a class="dropdown-item" href="{{ url_for( 'app_admin.url_admin_info') }}">
admin info admin info
</a> </a>
<a class="dropdown-item" href="{{ url_for( 'app_admin.url_admin_index') }}">
flask admin
</a>
<div class="dropdown-divider"></div> <div class="dropdown-divider"></div>
<a class="dropdown-item" href="{{ url_for( 'app_admin.url_alive_message_start') }}"> <a class="dropdown-item" href="{{ url_for( 'app_admin.url_alive_message_start') }}">
Task: Admin :: alive message Task: Admin :: alive message
......
...@@ -9,5 +9,9 @@ ...@@ -9,5 +9,9 @@
<a class="nav-link" <a class="nav-link"
href="{{ url_for( 'app_admin.url_admin_tasks') }}">admin tasks</a> href="{{ url_for( 'app_admin.url_admin_tasks') }}">admin tasks</a>
</li> </li>
<li class="nav-item">
<a class="nav-link"
href="{{ url_for( 'app_admin.url_admin_index') }}">flask admin</a>
</li>
</ul> </ul>
</nav> </nav>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment