Skip to content
Snippets Groups Projects
Commit 19326574 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Impress, data protection (issue #90)

parent fefce4a6
No related branches found
No related tags found
1 merge request!86Merge school-apps
......@@ -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')
]
......@@ -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')
{% 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' %}
<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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment