{% extends 'frontend/base.html.twig' %}{% form_theme form 'bootstrap_4_horizontal_layout.html.twig' %}{#{% form_theme form 'bootstrap_4_layout.html.twig' %}#}{% block pageTitle %}{{ bestellung.orderTitel }}{% endblock %}{% block pageDescription %}{% endblock %}{% block contentArea %}<div class="row"><div class="col-lg-8 col-12 mb-lg-0 mb-5"><h1>{{ bestellung.orderTitel }}</h1>{% if mailSendMessage %}<p>{{ mailSendMessage|nl2br }}</p>{% else %}{% if content.is_visible_on_frontend and content.content_html %}<p class="mb-4">{{ content.content_html|raw }}</p>{% endif %}{{ form_start(form, {'attr':{'class':'form-abo', 'novalidate':'novalidate'}}) }}{% if form.aboOption is defined %}{{ form_row(form.aboOption) }}{% endif %}<h5>Ihre Angaben</h5>{{ form_row(form.vorname) }}{{ form_row(form.nachname) }}{{ form_row(form.firma) }}{{ form_row(form.strasse) }}{{ form_row(form.plz) }}{{ form_row(form.ort) }}{{ form_row(form.land) }}{{ form_row(form.telefon) }}{{ form_row(form.email) }}<br>{{ form_row(form.mitteilung) }}{% if form.emailEpaperLogin is defined %}<h5>E-Paper Login</h5>{{ form_row(form.emailEpaperLogin) }}{% endif %}<h5>Lieferadresse</h5>{{ form_row(form.useRechnungsKontakt, {'attr':{'class':'jqUseRechnungsKontaktBtn'}}) }}<div class="jqRechnungskontaktFormFields" style="display: none">{{ form_row(form.rechnungVorname) }}{{ form_row(form.rechnungNachname) }}{{ form_row(form.rechnungFirma) }}{{ form_row(form.rechnungStrasse) }}{{ form_row(form.rechnungPlz) }}{{ form_row(form.rechnungOrt) }}{{ form_row(form.rechnungLand) }}</div><h5>Datenschutz</h5>{{ form_row(form.datenschutz) }}<br><button type="submit" class="btn btn-primary btn-sm">Bestellen</button> <a href="{{ path('fe.abo') }}" class="btn btn-link btn-sm">Abbrechen</a>{{ form_end(form) }}{% endif %}</div><div class="col-lg-4 col-12">{{ include('frontend/_partials/_right_col_full.html.twig') }}</div></div>{% endblock %}