diff --git a/gaehsnitz/static/gaehsnitz/style.css b/gaehsnitz/static/gaehsnitz/style.css index 0e06f92..8cb7baa 100644 --- a/gaehsnitz/static/gaehsnitz/style.css +++ b/gaehsnitz/static/gaehsnitz/style.css @@ -64,6 +64,11 @@ h1 { color: #664422; } +#navi a { + white-space: nowrap; + line-height: 1.7rem; +} + a { text-decoration: none; color: #EE9933; diff --git a/gaehsnitz/templates/gaehsnitz/base.html b/gaehsnitz/templates/gaehsnitz/base.html index 65f4320..fc88a2c 100644 --- a/gaehsnitz/templates/gaehsnitz/base.html +++ b/gaehsnitz/templates/gaehsnitz/base.html @@ -23,6 +23,8 @@ Programm | Finanzen + | + für Bands
diff --git a/gaehsnitz/templates/gaehsnitz/for-bands.html b/gaehsnitz/templates/gaehsnitz/for-bands.html new file mode 100644 index 0000000..8acac65 --- /dev/null +++ b/gaehsnitz/templates/gaehsnitz/for-bands.html @@ -0,0 +1,55 @@ +{% extends "gaehsnitz/base.html" %} + +{% block content %} + +

Technik

+

+ Derzeit bequatschen wir noch, was genau aus welcher Hand kommt, aber wir können schonmal versprechen, dass wir + den Großteil der Bühnenausstattung parat haben werden. Hier also die Details ... +

+ +

Backline

+ + +

Mikrofonierung

+ +

+ Falls mehr / speziellere Mikros benötigt werden, bringt bitte noch welche mit. :) +

+ +

Monitoring

+

+ .. ist leider noch unklar. +

+ +

PA

+ + +

Beleuchtung

+

+ .. sollte es auch irgendwie geben. Wir haben 2 Spots und ein paar ausgediente Ampeln. Wer etwas cooles + anzubieten hat - immer her damit! +

+ +

Recording

+

+ .. weil schon danach gefragt wurde: Wir haben die Möglichkeit, mehrspurige Mitschnitte zu machen, falls ihr + schon immer mal hören wolltet, wie ihr eigentlich klingt. ;) +

+{% endblock %} diff --git a/gaehsnitz/urls.py b/gaehsnitz/urls.py index 7cb636d..880d0c2 100644 --- a/gaehsnitz/urls.py +++ b/gaehsnitz/urls.py @@ -1,10 +1,11 @@ from django.urls import path -from gaehsnitz.views import NewsView, AToZView, ProgramView, FinanceView +from gaehsnitz.views import NewsView, AToZView, ProgramView, FinanceView, ForBandsView urlpatterns = [ path("", NewsView.as_view(), name="news"), path("atoz", AToZView.as_view(), name="atoz"), path("program", ProgramView.as_view(), name="program"), path("finance", FinanceView.as_view(), name="finance"), + path("for-bands", ForBandsView.as_view(), name="for-bands"), ] diff --git a/gaehsnitz/views.py b/gaehsnitz/views.py index e5e36d6..369a160 100644 --- a/gaehsnitz/views.py +++ b/gaehsnitz/views.py @@ -30,3 +30,7 @@ class ProgramView(GaehsnitzTemplateView): class FinanceView(GaehsnitzTemplateView): template_name = "gaehsnitz/finance.html" + + +class ForBandsView(GaehsnitzTemplateView): + template_name = "gaehsnitz/for-bands.html"