templates/frontend/abo/abobestellung.html.twig line 1

Open in your IDE?
  1. {% extends 'frontend/base.html.twig' %}
  2. {% form_theme form 'bootstrap_4_horizontal_layout.html.twig' %}
  3. {#{% form_theme form 'bootstrap_4_layout.html.twig' %}#}
  4. {% block pageTitle %}{{ bestellung.orderTitel }}{% endblock %}
  5. {% block pageDescription %}{% endblock %}
  6. {% block contentArea %}
  7. <div class="row">
  8. <div class="col-lg-8 col-12 mb-lg-0 mb-5">
  9. <h1>{{ bestellung.orderTitel }}</h1>
  10. {% if mailSendMessage %}
  11. <p>{{ mailSendMessage|nl2br }}</p>
  12. {% else %}
  13. {% if content.is_visible_on_frontend and content.content_html %}
  14. <p class="mb-4">
  15. {{ content.content_html|raw }}
  16. </p>
  17. {% endif %}
  18. {{ form_start(form, {'attr':{'class':'form-abo', 'novalidate':'novalidate'}}) }}
  19. {% if form.aboOption is defined %}
  20. {{ form_row(form.aboOption) }}
  21. {% endif %}
  22. <h5>Ihre Angaben</h5>
  23. {{ form_row(form.vorname) }}
  24. {{ form_row(form.nachname) }}
  25. {{ form_row(form.firma) }}
  26. {{ form_row(form.strasse) }}
  27. {{ form_row(form.plz) }}
  28. {{ form_row(form.ort) }}
  29. {{ form_row(form.land) }}
  30. {{ form_row(form.telefon) }}
  31. {{ form_row(form.email) }}
  32. <br>
  33. {{ form_row(form.mitteilung) }}
  34. {% if form.emailEpaperLogin is defined %}
  35. <h5>E-Paper Login</h5>
  36. {{ form_row(form.emailEpaperLogin) }}
  37. {% endif %}
  38. <h5>Lieferadresse</h5>
  39. {{ form_row(form.useRechnungsKontakt, {'attr':{'class':'jqUseRechnungsKontaktBtn'}}) }}
  40. <div class="jqRechnungskontaktFormFields" style="display: none">
  41. {{ form_row(form.rechnungVorname) }}
  42. {{ form_row(form.rechnungNachname) }}
  43. {{ form_row(form.rechnungFirma) }}
  44. {{ form_row(form.rechnungStrasse) }}
  45. {{ form_row(form.rechnungPlz) }}
  46. {{ form_row(form.rechnungOrt) }}
  47. {{ form_row(form.rechnungLand) }}
  48. </div>
  49. <h5>Datenschutz</h5>
  50. {{ form_row(form.datenschutz) }}
  51. <br>
  52. <button type="submit" class="btn btn-primary btn-sm">Bestellen</button>
  53. &nbsp;&nbsp;&nbsp;
  54. <a href="{{ path('fe.abo') }}" class="btn btn-link btn-sm">Abbrechen</a>
  55. {{ form_end(form) }}
  56. {% endif %}
  57. </div>
  58. <div class="col-lg-4 col-12">
  59. {{ include('frontend/_partials/_right_col_full.html.twig') }}
  60. </div>
  61. </div>
  62. {% endblock %}