* Feedbacks in der Sidebar
* Status 1 (gelb) bei Reiseprogrammen, falls der Starttermin innerhalb der nächsten 4 Wochen liegt * Sidebar-Boxen auf Reiseprogramm- und Buchungsseiten ausblenden; Suchfilter auf Buchungsseiten ausblenden * Vorauswahl der Destination bei Traveltainment-CMS-Seiten * Vorauswahl von Start- und Enddatum in den Suchmasken entfernen, da Zweck des Feldes (durch Platzhalter) nicht mehr erkennbar git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3317 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
30b80d660a
commit
76da75e891
13 changed files with 75 additions and 15 deletions
|
|
@ -135,6 +135,7 @@
|
|||
travel_guide_sidebar_widget_block: block('travel_guide_sidebar_widget') ?? null,
|
||||
travel_magazine_sidebar_widget_block: block('travel_magazine_sidebar_widget') ?? null,
|
||||
offers_sidebar_widget_block: block('offers_sidebar_widget') ?? null,
|
||||
feedbacks_sidebar_widget_block: block('feedbacks_sidebar_widget') ?? null,
|
||||
} %}
|
||||
|
||||
<div id="content" class="col-md-9 col-sm-8 col-xs-12">
|
||||
|
|
|
|||
|
|
@ -78,4 +78,14 @@
|
|||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% if (show_feedbacks_sidebar_widget ?? true) and page is defined and page.effectiveCountry is not empty
|
||||
and page.effectiveCountry.feedbackPage is not empty
|
||||
%}
|
||||
{% if feedbacks_sidebar_widget_block is null %}
|
||||
{{ render(controller('AppBundle:Component:feedbacksSidebarWidget', {country: page.effectiveCountry ?? null})) }}
|
||||
{% else %}
|
||||
{{ feedbacks_sidebar_widget_block|raw }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
</div><!-- end col -->
|
||||
|
|
@ -5,7 +5,7 @@
|
|||
{{ slider_title }}
|
||||
</div><!-- end title -->
|
||||
|
||||
<div class="box-slider newswidget clearfix">
|
||||
<div class="box-slider newswidget clearfix{{ theme|default('normal') == 'gray-box' ? ' gray-box' }}">
|
||||
|
||||
{% for slide in slides %}
|
||||
<a href="{{ slide.urlPath|default('javascript:void(0);') }}" class="slide{{ loop.first ? ' active' }}">
|
||||
|
|
|
|||
|
|
@ -254,7 +254,7 @@
|
|||
} %}
|
||||
</td>
|
||||
<td data-title="Verfügbarkeit">
|
||||
<img src="/images/icons/available-{{ travel_date.status }}.png"
|
||||
<img src="/images/icons/available-{{ travel_date.effectiveStatus }}.png"
|
||||
alt="Verfügbarkeit">
|
||||
</td>
|
||||
<td data-title="">
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@
|
|||
</td>
|
||||
|
||||
<td data-title="Verfügbarkeit">
|
||||
<img src="/images/icons/available-{{ travel_date.status }}.png"
|
||||
<img src="/images/icons/available-{{ travel_date.effectiveStatus }}.png"
|
||||
alt="Verfügbarkeit">
|
||||
</td>
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ TODO: This doesn't work. Form labels are rendered, but widgets themselves not. S
|
|||
#}
|
||||
|
||||
{% block body %}
|
||||
{% include 'default/components/sidebar/ttSearchSidebarWidget.html.twig' %}
|
||||
{% if tt_url is defined %}
|
||||
<iframe src="{{ tt_url }}" scrolling="no" width="100%" height="13500"
|
||||
onload="window.parent.parent.scrollTo(0,0);"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue