Formatierungen Kalenderansicht Sortierung FEWO git-svn-id: http://78.47.251.156/svn/dev/sterntours-3@3438 f459cee4-fb09-11de-96c3-f9c5f16c3c76
This commit is contained in:
parent
326f7f4f54
commit
bdb24ccd09
12 changed files with 207 additions and 19 deletions
|
|
@ -1,4 +1,11 @@
|
|||
{# @var insurance \AppBundle\Entity\TravelInsurance #}
|
||||
|
||||
<style>
|
||||
.c1.c1b li:before {
|
||||
top:-20px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="radio">
|
||||
{{ form_widget(form) }}
|
||||
|
||||
|
|
@ -7,13 +14,37 @@
|
|||
(<a href="#" data-toggle="modal" data-target="#st-insurance-{{ insurance.id }}-modal">Details</a>)
|
||||
</label>
|
||||
|
||||
|
||||
<div class="accordion-toggle-2">
|
||||
<div class="panel-group booking_insurance_toogle" id="accordion_in_{{ form.vars.id }}" style="margin-left: 5px;margin-top: 5px;">
|
||||
<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion_in_{{ form.vars.id }}" href="#collapse_in_{{ form.vars.id }}" aria-expanded="false">
|
||||
<h5 style="font-size: 0.9em;font-weight: 600;"><span>Leistungen einblenden</span><i class="indicator pull-right icon-plus"></i></h5>
|
||||
</a>
|
||||
<div id="collapse_in_{{ form.vars.id }}" class="panel-collapse collapse" aria-expanded="false" style="height: 0px;">
|
||||
<div class="panel-body">
|
||||
|
||||
<p><strong>Versicherung:</strong> {{ insurance.insuranceName }} </p>
|
||||
|
||||
<ul class="c1 c1b">
|
||||
{% for textli in insurance.text|split('\n') %}
|
||||
<li>{{ textli|raw }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<br>
|
||||
<p><a href="/uploads/{{ insurance.insurancePdf }} " target="_blank"> Informationsblatt zur Versicherung <i class="fa fa-file-pdf-o"></i></a> </p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% embed 'default/components/embed/modal.html.twig' with {
|
||||
id: 'insurance-' ~ insurance.id,
|
||||
title: insurance.name
|
||||
} %}
|
||||
{% block body %}
|
||||
<h3>Leistungen & Preisliste</h3>
|
||||
<ul>
|
||||
|
||||
<ul class="c1 c1b">
|
||||
{% for item in insurance.included|split('\n') %}
|
||||
<li>{{ item }}</li>
|
||||
{% endfor %}
|
||||
|
|
@ -42,4 +73,6 @@
|
|||
</table>
|
||||
{% endblock %}
|
||||
{% endembed %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -10,6 +10,8 @@
|
|||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
||||
|
||||
<tr class="st-total-tr">
|
||||
<td class="st-position-price-col">
|
||||
<span class="st-total-price">= {{ total_price|number_format(2) }} €</span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue