diff --git a/src/covid19/blueprints/ecdc/ecdc_views.py b/src/covid19/blueprints/ecdc/ecdc_views.py
index 4e57aae45ba5ff60e8c0b56450437d59df86945e..0eccb92ce0b47fd66eb9907aece630d7be1dc98d 100644
--- a/src/covid19/blueprints/ecdc/ecdc_views.py
+++ b/src/covid19/blueprints/ecdc/ecdc_views.py
@@ -14,6 +14,7 @@ from covid19.blueprints.application.application_model_transient import Applicati
 
 app_ecdc = Blueprint('ecdc', __name__, template_folder='templates', url_prefix='/ecdc')
 
+admin.add_view(ModelView(EcdcImport, db.session, category="ECDC"))
 admin.add_view(ModelView(EcdcDateReported, db.session, category="ECDC"))
 admin.add_view(ModelView(EcdcContinent, db.session, category="ECDC"))
 admin.add_view(ModelView(EcdcCountry, db.session, category="ECDC"))
diff --git a/src/covid19/blueprints/rki_bundeslaender/rki_views.py b/src/covid19/blueprints/rki_bundeslaender/rki_views.py
index a11fbd2f6bbf5169d2f19e7743e75c2f139d8440..aac36be270faab2808435c3349da673a127f348d 100644
--- a/src/covid19/blueprints/rki_bundeslaender/rki_views.py
+++ b/src/covid19/blueprints/rki_bundeslaender/rki_views.py
@@ -14,8 +14,9 @@ drop_and_create_data_again = True
 app_rki_bundeslaender = Blueprint(
     'rki_bundeslaender', __name__, template_folder='templates', url_prefix='/rki/bundeslaender')
 
-admin.add_view(ModelView(RkiBundeslaender, db.session, category="RKI Cases and Deaths"))
+
 admin.add_view(ModelView(RkiBundeslaenderImport, db.session, category="RKI Cases and Deaths"))
+admin.add_view(ModelView(RkiBundeslaender, db.session, category="RKI Cases and Deaths"))
 
 
 ##################################################################################################################
diff --git a/src/covid19/blueprints/rki_landkreise/rki_views.py b/src/covid19/blueprints/rki_landkreise/rki_views.py
index 3c64930914864a439bdfd4013c13e5a14eb84246..3e087b152c0c3793359989310c6e8d1b975c992b 100644
--- a/src/covid19/blueprints/rki_landkreise/rki_views.py
+++ b/src/covid19/blueprints/rki_landkreise/rki_views.py
@@ -19,11 +19,8 @@ app_rki_landkreise = Blueprint(
     url_prefix='/rki/landkreise'
 )
 
-admin.add_view(ModelView(RkiDateReported, db.session, category="RKI Cases and Deaths"))
-admin.add_view(ModelView(RkiRegion, db.session, category="RKI Cases and Deaths"))
-admin.add_view(ModelView(RkiCountry, db.session, category="RKI Cases and Deaths"))
-admin.add_view(ModelView(RkiLandkreise, db.session, category="RKI Cases and Deaths"))
 admin.add_view(ModelView(RkiLandkreiseImport, db.session, category="RKI Cases and Deaths"))
+admin.add_view(ModelView(RkiLandkreise, db.session, category="RKI Cases and Deaths"))
 
 
 ##################################################################################################################
diff --git a/src/covid19/blueprints/rki_vaccination/rki_vaccination_views.py b/src/covid19/blueprints/rki_vaccination/rki_vaccination_views.py
index 8c2b477b88ebe9747137de417306a38477bd5e60..77a12457916e44ace7e3c1db6fb6f64501be6772 100644
--- a/src/covid19/blueprints/rki_vaccination/rki_vaccination_views.py
+++ b/src/covid19/blueprints/rki_vaccination/rki_vaccination_views.py
@@ -14,6 +14,7 @@ from covid19.blueprints.application.application_model_transient import Applicati
 
 app_rki_vaccination = Blueprint('rki_vaccination', __name__, template_folder='templates', url_prefix='/rki/vaccination')
 
+admin.add_view(ModelView(RkiVaccinationImport, db.session, category="RKI Vaccination"))
 admin.add_view(ModelView(RkiVaccinationDateReported, db.session, category="RKI Vaccination"))
 admin.add_view(ModelView(RkiVaccinationData, db.session, category="RKI Vaccination"))
 
diff --git a/src/covid19/blueprints/who/who_views.py b/src/covid19/blueprints/who/who_views.py
index 2bd8b905f3a9fbb35b60660bea4dd2805e313740..afd7e2d27b35c14f4a54e751f85bfded67b8f82a 100644
--- a/src/covid19/blueprints/who/who_views.py
+++ b/src/covid19/blueprints/who/who_views.py
@@ -15,6 +15,7 @@ from covid19.blueprints.application.application_model_transient import Applicati
 
 app_who = Blueprint('who', __name__, template_folder='templates', url_prefix='/who')
 
+admin.add_view(ModelView(WhoImport, db.session, category="WHO"))
 admin.add_view(ModelView(WhoDateReported, db.session, category="WHO"))
 admin.add_view(ModelView(WhoRegion, db.session, category="WHO"))
 admin.add_view(ModelView(WhoCountry, db.session, category="WHO"))