New Header / Slider / Infos from API

This commit is contained in:
Kevin Adametz 2019-12-28 20:12:23 +01:00
parent 645ea5da7d
commit ee89626864
49 changed files with 6213 additions and 965 deletions

View file

@ -537,7 +537,7 @@
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
{{ form_field_pho(form.fax, 'Fax (optional)') }}
{{ form_field_pho(form.mobile, 'Handynummer (Bitte angeben)') }}
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
@ -574,7 +574,7 @@
<div class="">
<div class="col-md-12 col-sm-12 col-xs-12">
<h5>Reiseteilnehmer</h5>
<p>{{ getContextBySlug('namen-reisepass') }}</p>
<p>{{ getContextBySlug('namen-reisepass') | raw }}</p>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="hidden">
@ -657,7 +657,7 @@
<div class="col-md-5 col-sm-12 col-xs-12">
<div class="form-group">
<div class="">
{{ form_field_pho(traveler.birthDate, 'Geburtsdatum') }}
{{ form_field_pho(traveler.birthDate, 'Geburtsdatum (04.01.1964)') }}
</div>
<div class="help-block with-errors"></div>
</div>
@ -700,7 +700,7 @@
</div> <!-- st trav -->
<h2>Hinweis</h2>
<p>{{ getContextBySlug('hinweis-staatsbuergerschaft-1')|raw }}
<p>{{ getContextBySlug('hinweis-staatsbuergerschaft-1') | raw }}
{% for nationalitie in nationalities %}
{{ nationalitie.name }}{% if not loop.last %},{% endif %}
{% endfor %} {{ getContextBySlug('hinweis-staatsbuergerschaft-2')|raw }} </p>

View file

@ -182,8 +182,8 @@
<td>{{ booking.phone }}</td>
</tr>
<tr>
<td>Fax (optional)</td>
<td>{{ booking.fax }}</td>
<td>Handynummer (Bitte angeben)</td>
<td>{{ booking.mobile }}</td>
</tr>
<tr>
<td>E-Mail-Adresse</td>

View file

@ -195,7 +195,7 @@
</div>
<div class="col-md-6 col-sm-6 col-xs-12">
{{ form_field_pho(form.fax, 'Fax (optional)') }}
{{ form_field_pho(form.mobile, 'Handynummer (Bitte angeben)') }}
</div>
<div class="col-md-12 col-sm-12 col-xs-12">

View file

@ -107,8 +107,8 @@
<td>{{ fewo_booking_request.phone }}</td>
</tr>
<tr>
<td>Fax (optional)</td>
<td>{{ fewo_booking_request.fax }}</td>
<td>Handynummer (Bitte angeben)</td>
<td>{{ fewo_booking_request.mobile }}</td>
</tr>
<tr>
<td>E-Mail-Adresse</td>

View file

@ -19,9 +19,9 @@
<div class="result">
<div class="row">
<div class="image col-md-3">
<img src="/{{ travel_program.images.empty
? 'images/icons/no-picture.png'
: ('uploads/travel_program/' ~ travel_program.images.first.fileNameWithExtension)
<img src="{{ travel_program.images.empty
? '/images/icons/no-picture.png'
: ('https://v2.sterntours.de/uploads/travel_program/' ~ travel_program.images.first.fileNameWithExtension)
}}" class="img-responsive"
>
</div>