From 90a943c6308781edf9bd9e8e2626a4d242aeb68a Mon Sep 17 00:00:00 2001 From: Flo Ha Date: Wed, 6 May 2026 20:42:31 +0200 Subject: [PATCH] remove navi and for-bands page --- gaehsnitz/templates/gaehsnitz/base.html | 48 ++++---- gaehsnitz/templates/gaehsnitz/for-bands.html | 114 ------------------- gaehsnitz/urls.py | 3 +- gaehsnitz/views.py | 4 - 4 files changed, 20 insertions(+), 149 deletions(-) delete mode 100644 gaehsnitz/templates/gaehsnitz/for-bands.html diff --git a/gaehsnitz/templates/gaehsnitz/base.html b/gaehsnitz/templates/gaehsnitz/base.html index b49c196..4397a95 100644 --- a/gaehsnitz/templates/gaehsnitz/base.html +++ b/gaehsnitz/templates/gaehsnitz/base.html @@ -1,35 +1,25 @@ {% load static %} - + - - - - Gähsnitz Open Air - - - + + + + Gähsnitz Open Air + + + +
+

Gähsnitz Open Air 2026

+ ~ Do 11. - So 14. Juni ~ +
-
-

Gähsnitz Open Air 2026

- ~ Do 11. - So 14. Juni ~ -
+
{% block content %}{% endblock %}
- - -
- {% block content %}{% endblock %} -
- - - - + + diff --git a/gaehsnitz/templates/gaehsnitz/for-bands.html b/gaehsnitz/templates/gaehsnitz/for-bands.html deleted file mode 100644 index ffea8fb..0000000 --- a/gaehsnitz/templates/gaehsnitz/for-bands.html +++ /dev/null @@ -1,114 +0,0 @@ -{% extends "gaehsnitz/base.html" %} {% block content %} - -

Konditionen

- - -

Ablauf

-

vorläufig - kann diskutiert, verschoben und vertauscht werden

-

Donnerstag: Aufbau, Grundeinstellung, Soundcheck, evtl. Jam-Session 😎

-

Freitag:

- -

Samstag:

- - -

Bühne & Technik

- -

zur Info für Künstler*innen und als Packliste für uns ;)

- -

Backline für alle

-

Drums von Josi - bitte mit ❤ behandeln

- - -

Was mitgenutzt werden kann ...

- - -

Bitte mitbringen ...

- - -

Nur zum Jammen / was wir ungern verleihen ...

- - -

Mikrofonierung

- - -

Monitoring

- - -

PA

- - -

Beleuchtung

- - -

Kabel

- - -{% endblock %} diff --git a/gaehsnitz/urls.py b/gaehsnitz/urls.py index f2a9226..e987500 100644 --- a/gaehsnitz/urls.py +++ b/gaehsnitz/urls.py @@ -1,10 +1,9 @@ from django.urls import path -from gaehsnitz.views import NewsView, ForBandsView, Archive2022View, Archive2024View +from gaehsnitz.views import NewsView, Archive2022View, Archive2024View urlpatterns = [ path("", NewsView.as_view(), name="news"), - path("for-bands", ForBandsView.as_view(), name="for-bands"), path("archive/2022", Archive2022View.as_view(), name="archive-2022"), path("archive/2024", Archive2024View.as_view(), name="archive-2024"), ] diff --git a/gaehsnitz/views.py b/gaehsnitz/views.py index 82cdd21..2129915 100644 --- a/gaehsnitz/views.py +++ b/gaehsnitz/views.py @@ -57,10 +57,6 @@ class NewsView(GaehsnitzTemplateView): -class ForBandsView(GaehsnitzTemplateView): - template_name = "gaehsnitz/for-bands.html" - - class Archive2022View(GaehsnitzTemplateView): template_name = "gaehsnitz/archive-2022.html"