Bald, dooo!
- -Das bisschen Website macht sich von allein, nimmt man an.
- -{% endblock %} diff --git a/gaehsnitz/templates/gaehsnitz/news.html b/gaehsnitz/templates/gaehsnitz/news.html new file mode 100644 index 0000000..092d5a6 --- /dev/null +++ b/gaehsnitz/templates/gaehsnitz/news.html @@ -0,0 +1,9 @@ +{% extends "gaehsnitz/base.html" %} + +{% block content %} + +21.05. - neue Website
+ +Schürt's euch rein!
+ +{% endblock %} diff --git a/gaehsnitz/templates/gaehsnitz/program.html b/gaehsnitz/templates/gaehsnitz/program.html new file mode 100644 index 0000000..c63ba85 --- /dev/null +++ b/gaehsnitz/templates/gaehsnitz/program.html @@ -0,0 +1,16 @@ +{% extends "gaehsnitz/base.html" %} + +{% block content %} + +Bands
+The Residudes - Stoner Blues aus Leipzig
+Quast - Finn-Pop aus Köln
+Melo-Komplott - Melodic Rock aus Altenburg
+Direct Juice - 7-Ply-Hardcore aus Magdeburg
+As The Lights Fade - Metalcore aus Berlin
+...
+ +und sonst so ...
+Flunkyball, Open Jam Session, ...
+ +{% endblock %} diff --git a/gaehsnitz/urls.py b/gaehsnitz/urls.py index 4870f46..5daecd4 100644 --- a/gaehsnitz/urls.py +++ b/gaehsnitz/urls.py @@ -1,7 +1,9 @@ from django.urls import path -from gaehsnitz.views import IndexView +from gaehsnitz.views import NewsView, AToZView, ProgramView urlpatterns = [ - path("", IndexView.as_view(), name="index"), + path("", NewsView.as_view(), name="news"), + path("atoz", AToZView.as_view(), name="atoz"), + path("program", ProgramView.as_view(), name="program"), ] diff --git a/gaehsnitz/views.py b/gaehsnitz/views.py index 9a0e789..f58da25 100644 --- a/gaehsnitz/views.py +++ b/gaehsnitz/views.py @@ -1,5 +1,13 @@ from django.views.generic import TemplateView -class IndexView(TemplateView): - template_name = "gaehsnitz/index.html" +class NewsView(TemplateView): + template_name = "gaehsnitz/news.html" + + +class AToZView(TemplateView): + template_name = "gaehsnitz/atoz.html" + + +class ProgramView(TemplateView): + template_name = "gaehsnitz/program.html"