|
|
|
@ -58,10 +58,10 @@
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>Gastfreundschaft </b>
|
|
|
|
<b>Gastfreundschaft </b>
|
|
|
|
<span class="info">Gruppe:</span>
|
|
|
|
<span class="info">Gruppe:</span>
|
|
|
|
<select name="gastgruppe" id="gastgruppe">
|
|
|
|
<select name="info" id="info">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not info_data.gast.id %}selected{% endif %}></option>
|
|
|
|
{% for i in gruppen_data %}
|
|
|
|
{% for i in gruppen_data %}
|
|
|
|
<option value="{{ i.id }}"{% if info_data.gast.id == i.id %}selected{% endif %}>{{ i.nummer }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if info_data.gast.id == i.id %}selected{% endif %}>{{ i.Name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -69,10 +69,10 @@
|
|
|
|
<td><p class="theme" style="text-align: left">
|
|
|
|
<td><p class="theme" style="text-align: left">
|
|
|
|
<b>Reinigung </b>
|
|
|
|
<b>Reinigung </b>
|
|
|
|
<span class="info">Gruppe:</span>
|
|
|
|
<span class="info">Gruppe:</span>
|
|
|
|
<select name="gastgruppe" id="gastgruppe">
|
|
|
|
<select name="info" id="info">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not info_data.cleaning.id %}selected{% endif %}></option>
|
|
|
|
{% for i in gruppen_data %}
|
|
|
|
{% for i in gruppen_data %}
|
|
|
|
<option value="{{ i.id }}"{% if info_data.cleaning.id == i.id %}selected{% endif %}>{{ i.nummer }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if info_data.cleaning.id == i.id %}selected{% endif %}>{{ i.Name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -101,21 +101,22 @@
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">1. Dienst</div></td>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">1. Dienst</div></td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<input type="date" name="smd_1" id="smd_1" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_1|date:"Y-m-d"|default_if_none:"" }}">
|
|
|
|
<input type="date" name="smd" id="smd_1" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_1|date:"Y-m-d"|default_if_none:"0" }}">
|
|
|
|
<input type="time" name="smt_1" id="smt_1" value="{{ service_data.time_1|time:"H:i"|default_if_none:"" }}">
|
|
|
|
<input type="time" name="smt" id="smt_1" value="{{ service_data.time_1|time:"H:i"|default_if_none:"0" }}">
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="smm_1" id="smm_1">
|
|
|
|
<select name="smm" id="smm_1">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.type_1 %}selected{% endif %}></option>
|
|
|
|
<option value="1"{% if service_data.type_1 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="1"{% if service_data.type_1 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="2"{% if service_data.type_1 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
<option value="2"{% if service_data.type_1 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
|
|
|
|
<option value="3"{% if service_data.type_1 == 3 %}selected{% endif %}>Gruppe</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="sms_1" id="sms_1">
|
|
|
|
<select name="sms" id="sms_1">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.speaker_1 %}selected{% endif %}></option>
|
|
|
|
{% for i in sm %}
|
|
|
|
{% for i in sm %}
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
@ -125,21 +126,22 @@
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">2. Dienst</div></td>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">2. Dienst</div></td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<input type="date" name="smd_2" id="smd_2" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_2|date:"Y-m-d"|default_if_none:"" }}">
|
|
|
|
<input type="date" name="smd" id="smd_2" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_2|date:"Y-m-d"|default_if_none:"0" }}">
|
|
|
|
<input type="time" name="smt_2" id="smt_2" value="{{ service_data.time_2|time:"H:i"|default_if_none:"" }}">
|
|
|
|
<input type="time" name="smt" id="smt_2" value="{{ service_data.time_2|time:"H:i"|default_if_none:"0" }}">
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="smm_2" id="smm_2">
|
|
|
|
<select name="smm" id="smm_2">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.type_2 %}selected{% endif %}></option>
|
|
|
|
<option value="1"{% if service_data.type_2 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="1"{% if service_data.type_2 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="2"{% if service_data.type_2 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
<option value="2"{% if service_data.type_2 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
|
|
|
|
<option value="3"{% if service_data.type_2 == 3 %}selected{% endif %}>Gruppe</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="sms_2" id="sms_2">
|
|
|
|
<select name="sms" id="sms_2">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.speaker_2 %}selected{% endif %}></option>
|
|
|
|
{% for i in sm %}
|
|
|
|
{% for i in sm %}
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
@ -149,21 +151,22 @@
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">3. Dienst</div></td>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">3. Dienst</div></td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<input type="date" name="smd_3" id="smd_3" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_3|date:"Y-m-d"|default_if_none:"" }}">
|
|
|
|
<input type="date" name="smd" id="smd_3" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_3|date:"Y-m-d"|default_if_none:"0" }}">
|
|
|
|
<input type="time" name="smt_3" id="smt_3" value="{{ service_data.time_3|time:"H:i"|default_if_none:"" }}">
|
|
|
|
<input type="time" name="smt" id="smt_3" value="{{ service_data.time_3|time:"H:i"|default_if_none:"0" }}">
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="smm_3" id="smm_3">
|
|
|
|
<select name="smm" id="smm_3">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0" {% if not service_data.type_3 %}selected{% endif %}></option>
|
|
|
|
<option value="1"{% if service_data.type_3 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="1"{% if service_data.type_3 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="2"{% if service_data.type_3 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
<option value="2"{% if service_data.type_3 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
|
|
|
|
<option value="3"{% if service_data.type_3 == 3 %}selected{% endif %}>Gruppe</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="sms_3" id="sms_3">
|
|
|
|
<select name="sms" id="sms_3">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.speaker_3 %}selected{% endif %}></option>
|
|
|
|
{% for i in sm %}
|
|
|
|
{% for i in sm %}
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_3.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_3.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
@ -173,21 +176,22 @@
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">4. Dienst</div></td>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">4. Dienst</div></td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<input type="date" name="smd_4" id="smd_4" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_4|date:"Y-m-d"|default_if_none:"" }}">
|
|
|
|
<input type="date" name="smd" id="smd_4" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_4|date:"Y-m-d"|default_if_none:"0" }}">
|
|
|
|
<input type="time" name="smt_4" id="smt_4" value="{{ service_data.time_4|time:"H:i"|default_if_none:"" }}">
|
|
|
|
<input type="time" name="smt" id="smt_4" value="{{ service_data.time_4|time:"H:i"|default_if_none:"0" }}">
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="smm_4" id="smm_4">
|
|
|
|
<select name="smm" id="smm_4">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.type_4 %}selected{% endif %}></option>
|
|
|
|
<option value="1"{% if service_data.type_4 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="1"{% if service_data.type_4 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="2"{% if service_data.type_4 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
<option value="2"{% if service_data.type_4 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
|
|
|
|
<option value="3"{% if service_data.type_4 == 3 %}selected{% endif %}>Gruppe</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="sms_4" id="sms_4">
|
|
|
|
<select name="sms" id="sms_4">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.speaker_4 %}selected{% endif %}></option>
|
|
|
|
{% for i in sm %}
|
|
|
|
{% for i in sm %}
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_4.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_4.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
@ -197,21 +201,22 @@
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">5. Dienst</div></td>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">5. Dienst</div></td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<input type="date" name="smd_5" id="smd_5" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_5|date:"Y-m-d"|default_if_none:"" }}">
|
|
|
|
<input type="date" name="smd" id="smd_5" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_5|date:"Y-m-d"|default_if_none:"0" }}">
|
|
|
|
<input type="time" name="smt_5" id="smt_5" value="{{ service_data.time_5|time:"H:i"|default_if_none:"" }}">
|
|
|
|
<input type="time" name="smt" id="smt_5" value="{{ service_data.time_5|time:"H:i"|default_if_none:"0" }}">
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="smm_5" id="smm_5">
|
|
|
|
<select name="smm" id="smm_5">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.type_5 %}selected{% endif %}></option>
|
|
|
|
<option value="1"{% if service_data.type_5 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="1"{% if service_data.type_5 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="2"{% if service_data.type_5 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
<option value="2"{% if service_data.type_5 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
|
|
|
|
<option value="3"{% if service_data.type_5 == 3 %}selected{% endif %}>Gruppe</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="sms_5" id="sms_5">
|
|
|
|
<select name="sms" id="sms_5">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.speaker_5 %}selected{% endif %}></option>
|
|
|
|
{% for i in sm %}
|
|
|
|
{% for i in sm %}
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_5.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_5.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
@ -221,21 +226,22 @@
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">6. Dienst</div></td>
|
|
|
|
<td style="width: 2.750rem;"><div class="infobox starttime s">6. Dienst</div></td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<input type="date" name="smd_6" id="smd_6" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_6|date:"Y-m-d"|default_if_none:"" }}">
|
|
|
|
<input type="date" name="smd" id="smd_6" min="{{ date_area.min }}" max="{{ date_area.max }}" value="{{ service_data.date_6|date:"Y-m-d"|default_if_none:"0" }}">
|
|
|
|
<input type="time" name="smt_6" id="smt_6" value="{{ service_data.time_6|time:"H:i"|default_if_none:"" }}">
|
|
|
|
<input type="time" name="smt" id="smt_6" value="{{ service_data.time_6|time:"H:i"|default_if_none:"0" }}">
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="smm_6" id="smm_6">
|
|
|
|
<select name="smm" id="smm_6">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.type_6 %}selected{% endif %}></option>
|
|
|
|
<option value="1"{% if service_data.type_6 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="1"{% if service_data.type_6 == 1 %}selected{% endif %}>Zoom</option>
|
|
|
|
<option value="2"{% if service_data.type_6 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
<option value="2"{% if service_data.type_6 == 2 %}selected{% endif %}>Saal</option>
|
|
|
|
|
|
|
|
<option value="3"{% if service_data.type_6 == 3 %}selected{% endif %}>Gruppe</option>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<select name="sms_6" id="sms_6">
|
|
|
|
<select name="sms" id="sms_6">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not service_data.speaker_6 %}selected{% endif %}></option>
|
|
|
|
{% for i in sm %}
|
|
|
|
{% for i in sm %}
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_6.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if service_data.speaker_6.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</td>
|
|
|
|
</td>
|
|
|
|
@ -270,10 +276,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>1. </b>
|
|
|
|
<b>1. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="ods" id="ods_1">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not steward_data.hall_1.id %}selected{% endif %}></option>
|
|
|
|
{% for i in saal_ordner %}
|
|
|
|
{% for i in saal_ordner %}
|
|
|
|
<option value="{{ i.id }}"{% if steward_data.hall_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if steward_data.hall_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -283,10 +289,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>2. </b>
|
|
|
|
<b>2. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="ods" id="ods_1">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not steward_data.hall_2.id %}selected{% endif %}></option>
|
|
|
|
{% for i in saal_ordner %}
|
|
|
|
{% for i in saal_ordner %}
|
|
|
|
<option value="{{ i.id }}"{% if steward_data.hall_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if steward_data.hall_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -304,10 +310,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>1. </b>
|
|
|
|
<b>1. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="ods" id="ods_1">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not steward_data.foyer_1.id %}selected{% endif %}></option>
|
|
|
|
{% for i in ordner %}
|
|
|
|
{% for i in ordner %}
|
|
|
|
<option value="{{ i.id }}"{% if steward_data.foyer_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if steward_data.foyer_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -317,10 +323,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>2. </b>
|
|
|
|
<b>2. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="ods" id="ods_1">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not steward_data.foyer_2.id %}selected{% endif %}></option>
|
|
|
|
{% for i in ordner %}
|
|
|
|
{% for i in ordner %}
|
|
|
|
<option value="{{ i.id }}"{% if steward_data.foyer_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if steward_data.foyer_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -356,10 +362,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>1. </b>
|
|
|
|
<b>1. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="regie" id="regie_1">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not regie_data.regie_1.id %}selected{% endif %}></option>
|
|
|
|
{% for i in anlage %}
|
|
|
|
{% for i in anlage %}
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.regie_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.regie_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -369,10 +375,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>2. </b>
|
|
|
|
<b>2. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="regie" id="regie_2">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not regie_data.regie_2.id %}selected{% endif %}></option>
|
|
|
|
{% for i in anlage %}
|
|
|
|
{% for i in anlage %}
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.regie_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.regie_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -392,10 +398,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>1. </b>
|
|
|
|
<b>1. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="regie" id="regie_3">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not regie_data.zoom_1.id %}selected{% endif %}></option>
|
|
|
|
{% for i in zoom %}
|
|
|
|
{% for i in zoom %}
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.zoom_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.zoom_1.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -405,10 +411,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>2. </b>
|
|
|
|
<b>2. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="regie" id="regie_4">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"{% if not regie_data.zoom_2.id %}selected{% endif %}></option>
|
|
|
|
{% for i in zoom %}
|
|
|
|
{% for i in zoom %}
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.zoom_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.zoom_2.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -429,10 +435,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<p class="theme" style="text-align: left">
|
|
|
|
<b>1. </b>
|
|
|
|
<b>1. </b>
|
|
|
|
<select name="ods_1" id="ods_1">
|
|
|
|
<select name="regie" id="regie_5">
|
|
|
|
<option value="0"></option>
|
|
|
|
<option value="0"></option>
|
|
|
|
{% for i in buehne %}
|
|
|
|
{% for i in buehne %}
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.stage.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}. {{ i.name }}</option>
|
|
|
|
<option value="{{ i.id }}"{% if regie_data.stage.id == i.id %}selected{% endif %}>{{ i.first_name.0 }}{% if i.first_name == "Fred" %}red{% endif %}. {{ i.name }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</p>
|
|
|
|
</p>
|
|
|
|
@ -442,7 +448,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p style="display: none;">!Technik_END!</p>
|
|
|
|
<p style="display: none;">!Technik_END!</p>
|
|
|
|
<div class="formcontrol">
|
|
|
|
<div class="formcontrol">
|
|
|
|
<button type="submit" class="btn btn-secondary">Speichern</button>
|
|
|
|
<button type="submit" class="btn btn-secondary" name="formsend">Speichern</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|