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

* Fixed #123 split RkiBundeslaenderService into two Services, one for...

* 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
parent c383cbac
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,8 @@ ...@@ -20,7 +20,8 @@
<ul class="pagination"> <ul class="pagination">
{% if page_data.has_prev %} {% if page_data.has_prev %}
<li class="page-item"> <li class="page-item">
<a class="page-link" href="{{ url_for('rki_landkreise.url_rki_imported', page=page_data.prev_num) }}">Previous</a> <a class="page-link"
href="{{ url_for('rki_landkreise.url_rki_imported', page=page_data.prev_num) }}">Previous</a>
</li> </li>
{% endif %} {% endif %}
<!-- all page numbers --> <!-- all page numbers -->
...@@ -28,11 +29,13 @@ ...@@ -28,11 +29,13 @@
{% if page_num %} {% if page_num %}
{% if page_num != page_data.page %} {% if page_num != page_data.page %}
<li class="page-item"> <li class="page-item">
<a class="page-link" href="{{ url_for('rki_landkreise.url_rki_imported', page=page_num) }}">{{ page_num }}</a> <a class="page-link"
href="{{ url_for('rki_landkreise.url_rki_imported', page=page_num) }}">{{ page_num }}</a>
</li> </li>
{% else %} {% else %}
<li class="page-item active"> <li class="page-item active">
<a class="page-link" href="#">{{ page_num }}</a> <a class="page-link"
href="#">{{ page_num }}</a>
</li> </li>
{% endif %} {% endif %}
{% else %} {% else %}
...@@ -44,7 +47,8 @@ ...@@ -44,7 +47,8 @@
<!-- next page --> <!-- next page -->
{% if page_data.has_next %} {% if page_data.has_next %}
<li class="page-item"> <li class="page-item">
<a class="page-link" href="{{ url_for('rki_landkreise.url_rki_imported', page=page_data.next_num) }}">Next</a> <a class="page-link"
href="{{ url_for('rki_landkreise.url_rki_imported', page=page_data.next_num) }}">Next</a>
</li> </li>
{% endif %} {% endif %}
</ul> </ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment