booking form responsive
git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3463 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
2fe066b00f
commit
ad4dff526c
6 changed files with 107 additions and 14 deletions
|
|
@ -79,7 +79,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<td>Reisezeitraum</td>
|
||||
<td>{{ travel_date.start|date }} - {{ travel_date.end|date }} ({{ travel_date.name }})</td>
|
||||
<td>{{ travel_date.start|date }} - {{ travel_date.end|date }} <br class="hidden visible-xs"> ({{ travel_date.name }})</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{{ form_label(form.departure, 'Abflugort') }}</td>
|
||||
|
|
@ -301,10 +301,13 @@
|
|||
{% if departure.flightTime[travel_date.startWeekday] is defined %}
|
||||
<div class="flight_times_ele" id="flight_time_{{ departure.id }}" style="display: none;">
|
||||
<h3>Von {{ departure.name }}</h3>
|
||||
{# travel_date.end|date #}
|
||||
{# travel_date.end|date #}
|
||||
{{ departure.flightTime[travel_date.startWeekday] }}
|
||||
|
||||
<ul class="c1">
|
||||
{% for flightTime in departure.flightTime[travel_date.startWeekday]|split('\n') %}
|
||||
{% if flightTime != "" %}
|
||||
<li>{{ flightTime|raw }}</li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue