From 4f0efd1adca4cac1fe6363d5534e3bb737d3fba7 Mon Sep 17 00:00:00 2001
From: thomaswoehlke <thomas.woehlke@gmail.com>
Date: Wed, 26 May 2021 10:44:47 +0200
Subject: [PATCH] Refactoring: vaccination

---
 .../rki/landkreis/all/rki_landkreis_all_table.html         | 7 +++++--
 .../rki/landkreis/all/rki_landkreis_all_table_head.html    | 3 ++-
 2 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table.html b/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table.html
index c201015b..0f7ecca4 100644
--- a/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table.html
+++ b/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table.html
@@ -12,10 +12,13 @@
                     </a>
                 </td>
                 <td>
-                    {{ rki_landkreis.id_landkreis }}
+                    {{ rki_landkreis.location }}
                 </td>
                 <td>
-                    {{ rki_landkreis.location }}
+                    {{ rki_landkreis.location_type }}
+                </td>
+                <td>
+                    {{ rki_landkreis.id_landkreis }}
                 </td>
             </tr>
         {% endfor %}
diff --git a/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table_head.html b/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table_head.html
index df4905b3..78dc13c3 100644
--- a/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table_head.html
+++ b/src/flask_covid19/blueprints/data_rki/templates/rki/landkreis/all/rki_landkreis_all_table_head.html
@@ -1,5 +1,6 @@
             <tr>
                 <th scope="col">bundesland</th>
-                <th scope="col">id landkreis</th>
                 <th scope="col">landkreis</th>
+                <th scope="col">typ</th>
+                <th scope="col">id landkreis</th>
             </tr>
-- 
GitLab