diff --git a/schoolapps/dashboard/urls.py b/schoolapps/dashboard/urls.py
index d578b620774c6936f54dfada3d23b8a416dc6dff..36bc9f13e3e63551e1799c3413ba3caab8b2633f 100755
--- a/schoolapps/dashboard/urls.py
+++ b/schoolapps/dashboard/urls.py
@@ -4,6 +4,5 @@ from . import views
 urlpatterns = [
     path('', views.index, name='dashboard'),
     path('test/', views.test_notification, name='test'),
-    path('impress/', views.impress, name='impress')
 ]
 
diff --git a/schoolapps/dashboard/views.py b/schoolapps/dashboard/views.py
index ee8eca52599e309b476564d1c1ff23edc5232cee..70996fff84b8f4beb7befeaac2f22d0577f6268c 100755
--- a/schoolapps/dashboard/views.py
+++ b/schoolapps/dashboard/views.py
@@ -52,9 +52,5 @@ def test_notification(request):
     return redirect(reverse('dashboard'))
 
 
-def impress(request):
-    return render(request, 'common/impress.html')
-
-
 def error_404(request, exception):
     return render(request, 'common/404.html')
diff --git a/schoolapps/templates/common/impress.html b/schoolapps/templates/common/impress.html
deleted file mode 100755
index b19c378808fc3583da608675708410a7034319fd..0000000000000000000000000000000000000000
--- a/schoolapps/templates/common/impress.html
+++ /dev/null
@@ -1,34 +0,0 @@
-{% include 'partials/header.html' %}
-
-<main>
-    <h3>Impressum</h3>
-
-    <p>
-        <strong>Katharineum zu Lübeck</strong> <br>
-        Königsstraße 27-31 <br>
-        23552 Lübeck
-    </p>
-
-    <p>
-        <strong>Kommissarischer Schulleiter:</strong> Herr StD Poetzsch-Heffter <br>
-        <strong>E-Mail:</strong> schulleiter@katharineum.de
-    </p>
-
-    <p>
-        <strong>Schulträger:</strong> Hansestadt Lübeck <br>
-        vertreten durch den Bürgermeister Bernd Saxe
-    </p>
-
-    <p>
-        <strong>Entwicklung und Betreuung von <i>SchoolApps</i>:</strong> Herr Poetzsch-Heffter und die Computer-AG
-    </p>
-
-    <h4>Disclaimer – rechtliche Hinweise</h4>
-    <strong><i><u>TODO</u></i></strong><br>
-    Haftungsausschluss (Aktualität, Richtigkeit, etc.)<br>
-    Datenschutz, Datenverarbeitung (Weitergabe an Dritte?, etc.)<br>
-    Sicherheit (Verschlüsselung, generell Sicherheitsprobleme möglich)
-
-</main>
-
-{% include 'partials/footer.html' %}
diff --git a/schoolapps/templates/partials/footer.html b/schoolapps/templates/partials/footer.html
index 01e26e4a9f9d521c220075762a2d1903b7a0f0c5..f724a403e065ca2bf1e56407d0f935b38d2f91de 100755
--- a/schoolapps/templates/partials/footer.html
+++ b/schoolapps/templates/partials/footer.html
@@ -1,8 +1,12 @@
 <footer class="page-footer primary-color">
     <div class="footer-copyright">
         <div class="container">
-            © 2018 Computer-AG, Katharineum zu Lübeck
-            <a class="grey-text text-lighten-4 right" href="{% url 'impress' %}">Impressum</a>
+            © 2019 Computer-AG, Katharineum zu Lübeck
+            <span class="right">
+                <a class="grey-text text-lighten-4" href="https://katharineum-zu-luebeck.de/impressum/">Impressum</a>
+                ·
+                <a class="grey-text text-lighten-4" href="https://katharineum-zu-luebeck.de/datenschutzerklaerung/">Datenschutzerklärung</a>
+            </span>
         </div>
     </div>
 </footer>