add for-bands page
This commit is contained in:
@@ -64,6 +64,11 @@ h1 {
|
||||
color: #664422;
|
||||
}
|
||||
|
||||
#navi a {
|
||||
white-space: nowrap;
|
||||
line-height: 1.7rem;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: #EE9933;
|
||||
|
||||
@@ -23,6 +23,8 @@
|
||||
<a href="{% url 'gaehsnitz:program' %}">Programm</a>
|
||||
|
|
||||
<a href="{% url 'gaehsnitz:finance' %}">Finanzen</a>
|
||||
|
|
||||
<a href="{% url 'gaehsnitz:for-bands' %}">für Bands</a>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
|
||||
55
gaehsnitz/templates/gaehsnitz/for-bands.html
Normal file
55
gaehsnitz/templates/gaehsnitz/for-bands.html
Normal file
@@ -0,0 +1,55 @@
|
||||
{% extends "gaehsnitz/base.html" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<h2>Technik</h2>
|
||||
<p>
|
||||
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 ...
|
||||
</p>
|
||||
|
||||
<h3>Backline</h3>
|
||||
<ul>
|
||||
<li>Bassbox: Markbass 4x10", 4 Ohm</li>
|
||||
<li>Gitarrenboxen sind noch unklar</li>
|
||||
<li>Drums: wahrscheinlich Pearl Bassdrum + 3 Toms</li>
|
||||
<li>(Bass-Amp: Markbass Little Mark Tube 800 darf mitgenutzt werden)</li>
|
||||
<li>(Gitarrenkombo: Blackstar HT-5 darf mitbenutzt werden)</li>
|
||||
</ul>
|
||||
|
||||
<h3>Mikrofonierung</h3>
|
||||
<ul>
|
||||
<li>3 Gesangsmikros: SM58, PG58 und noch 'n billiges</li>
|
||||
<li>3 Amp-Mikros (Bass sowieso lieber via DI)</li>
|
||||
<li>Bassdrum-Mikro: t.bone Beta BD 500</li>
|
||||
<li>sonstige Drum-Mikros und Klemmen sind noch unklar</li>
|
||||
<li>6 große Mikro-Stative (Vocals, Overheads, Reserve)</li>
|
||||
<li>3 kleine Mikro-Stative (Amps, evtl. Bassdrum)</li>
|
||||
</ul>
|
||||
<p>
|
||||
Falls mehr / speziellere Mikros benötigt werden, bringt bitte noch welche mit. :)
|
||||
</p>
|
||||
|
||||
<h3>Monitoring</h3>
|
||||
<p>
|
||||
.. ist leider noch unklar.
|
||||
</p>
|
||||
|
||||
<h3>PA</h3>
|
||||
<ul>
|
||||
<li>Mischpult & Stagebox: Behringer X-Air 18 (genug Kanäle für alles mögliche!)</li>
|
||||
<li>Beschallung: 2 aktive Subwoofer, 2 passive Hochtöner + Amp, Stative</li>
|
||||
</ul>
|
||||
|
||||
<h3>Beleuchtung</h3>
|
||||
<p>
|
||||
.. sollte es auch irgendwie geben. Wir haben 2 Spots und ein paar ausgediente Ampeln. Wer etwas cooles
|
||||
anzubieten hat - immer her damit!
|
||||
</p>
|
||||
|
||||
<h3>Recording</h3>
|
||||
<p>
|
||||
.. 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. ;)
|
||||
</p>
|
||||
{% endblock %}
|
||||
@@ -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"),
|
||||
]
|
||||
|
||||
@@ -30,3 +30,7 @@ class ProgramView(GaehsnitzTemplateView):
|
||||
|
||||
class FinanceView(GaehsnitzTemplateView):
|
||||
template_name = "gaehsnitz/finance.html"
|
||||
|
||||
|
||||
class ForBandsView(GaehsnitzTemplateView):
|
||||
template_name = "gaehsnitz/for-bands.html"
|
||||
|
||||
Reference in New Issue
Block a user