diff --git a/webcentral/src/pages/urls.py b/webcentral/src/pages/urls.py
index 031035d4..361bf91a 100644
--- a/webcentral/src/pages/urls.py
+++ b/webcentral/src/pages/urls.py
@@ -10,6 +10,7 @@
path("impressum", views.impressum, name="impressum"),
path("about", views.about, name="about"),
path("coming", views.coming, name="coming"),
+ path("copyright", views.copyright, name="copyright"),
path(
"Datenschutzhinweis",
views.Datenschutzhinweis,
diff --git a/webcentral/src/pages/views.py b/webcentral/src/pages/views.py
index c3405034..e72e2790 100644
--- a/webcentral/src/pages/views.py
+++ b/webcentral/src/pages/views.py
@@ -23,6 +23,9 @@ def Datenschutzhinweis(request):
"""Call render function for datenschutzhinweis page."""
return render(request, "pages/Datenschutzhinweis.html")
+def copyright(request):
+ """Call render function for copyright page."""
+ return render(request, "pages/copyright.html")
def about(request):
"""Call render function for about page."""
diff --git a/webcentral/src/templates/pages/copyright.html b/webcentral/src/templates/pages/copyright.html
new file mode 100644
index 00000000..432fa68c
--- /dev/null
+++ b/webcentral/src/templates/pages/copyright.html
@@ -0,0 +1,48 @@
+{% extends 'base.html' %}
+
+{% block title %}Copyright{% endblock %}
+
+{% load static %}
+{% load i18n %}
+
+{% block content %}
+
+
+
+
+
+
+
+
+
+
+ Text 1
+
+
+
Python
+
+ Python text
+
+
+
Autodesk
+
+ Autodesk text
+
+
+
+
+
+
+{% endblock %}