#1352 - bisheriger aktueller Stand, vor CalenderDayState
git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3354 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
1716662ac5
commit
a2d4159c88
10 changed files with 48 additions and 27 deletions
|
|
@ -24,8 +24,9 @@
|
|||
{{ form_row(form.city, {'label': 'Ort'}) }}
|
||||
{{ form_row(form.maximumPersons, {'label': 'Maximale Personenanzahl'}) }}
|
||||
{{ form_row(form.deposit, {'label': 'Kaution'}) }}
|
||||
{{ form_row(form.onlyWeekday, {'label': 'Exklusiver Wochentag'}) }}
|
||||
{#{{ form_row(form.onlyWeekday, {'label': 'Exklusiver Wochentag'}) }}#}
|
||||
|
||||
{#
|
||||
<div class="checkbox">
|
||||
{{ form_widget(form.calendarVisible) }}
|
||||
<label for="{{ form.calendarVisible.vars.id }}">
|
||||
|
|
@ -33,6 +34,7 @@
|
|||
</label>
|
||||
{{ form_errors(form.calendarVisible) }}
|
||||
</div>
|
||||
#}
|
||||
|
||||
<br><br>
|
||||
|
||||
|
|
@ -97,8 +99,8 @@
|
|||
{% for lodgingPrice in lodging.prices %}
|
||||
<tr>
|
||||
<td>{{ lodgingPrice.season.name }}</td>
|
||||
<td>{{ lodgingPrice.season.fromDate|date('d-m-y') }}</td>
|
||||
<td>{{ lodgingPrice.season.toDate|date('d-m-y') }}</td>
|
||||
<td>{{ lodgingPrice.season.fromDate|date('d.m.y') }}</td>
|
||||
<td>{{ lodgingPrice.season.toDate|date('d.m.y') }}</td>
|
||||
<td>{{ lodgingPrice.season.minimumStay }}</td>
|
||||
<td>{{ lodgingPrice.perNight }}</td>
|
||||
<td>{{ lodgingPrice.flatPrice }}</td>
|
||||
|
|
@ -152,8 +154,8 @@
|
|||
|
||||
{% for lodgingReservation in lodging.reservations %}
|
||||
<tr>
|
||||
<td>{{ lodgingReservation.fromDate|date('d-m-y') }}</td>
|
||||
<td>{{ lodgingReservation.toDate|date('d-m-y') }}</td>
|
||||
<td>{{ lodgingReservation.fromDate|date('d.m.y') }}</td>
|
||||
<td>{{ lodgingReservation.toDate|date('d.m.y') }}</td>
|
||||
<td>
|
||||
{% if lodgingReservation.status == 0 %}
|
||||
belegt
|
||||
|
|
|
|||
|
|
@ -24,9 +24,9 @@
|
|||
{{ form_row(form.city, {label: 'Ort'}) }}
|
||||
{{ form_row(form.maximumPersons, {label: 'Maximale Personenanzahl'}) }}
|
||||
{{ form_row(form.deposit, {label: 'Kaution'}) }}
|
||||
{{ form_row(form.onlyWeekday, {label: 'Exklusiver Wochentag'}) }}
|
||||
|
||||
{#{{ form_row(form.onlyWeekday, {label: 'Exklusiver Wochentag'}) }}#}
|
||||
|
||||
{#
|
||||
<div class="checkbox">
|
||||
{{ form_widget(form.calendarVisible) }}
|
||||
<label for="{{ form.calendarVisible.vars.id }}">
|
||||
|
|
@ -34,6 +34,7 @@
|
|||
</label>
|
||||
{{ form_errors(form.calendarVisible) }}
|
||||
</div>
|
||||
#}
|
||||
|
||||
<div class="col-md-12 col-sm-12 col-xs-12">
|
||||
<button type="submit" value="SEND" id="submit"
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
{{ form_row(form.fromDate , {label: 'Von'}) }}
|
||||
{{ form_row(form.toDate, {label: 'Bis'}) }}
|
||||
{{ form_row(form.status, {label: 'Status'}) }}
|
||||
{{ form_row(form.type, {label: 'Typ'}) }}
|
||||
{#{{ form_row(form.type, {label: 'Typ'}) }}#}
|
||||
|
||||
<div class="col-md-12 col-sm-12 col-xs-12">
|
||||
<button type="submit" value="SEND" id="submit"
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
{{ form_row(form.fromDate , {label: 'Von'}) }}
|
||||
{{ form_row(form.toDate, {label: 'Bis'}) }}
|
||||
{{ form_row(form.status, {label: 'Status'}) }}
|
||||
{{ form_row(form.type, {label: 'Typ'}) }}
|
||||
{#{{ form_row(form.type, {label: 'Typ'}) }}#}
|
||||
|
||||
<div class="col-md-12 col-sm-12 col-xs-12">
|
||||
<button type="submit" value="SEND" id="submit"
|
||||
|
|
|
|||
|
|
@ -22,8 +22,8 @@
|
|||
{% for season in seasons %}
|
||||
<tr>
|
||||
<td>{{ season.name }}</td>
|
||||
<td>{{ season.fromDate|date('d-m-y') }}</td>
|
||||
<td>{{ season.toDate|date('d-m-y') }}</td>
|
||||
<td>{{ season.fromDate|date('d.m.y') }}</td>
|
||||
<td>{{ season.toDate|date('d.m.y') }}</td>
|
||||
<td>
|
||||
<a href="{{ '/admin/fewo/seasons/' ~ season.id }}"
|
||||
class="btn btn-primary"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue