Files
myep/templates/booking/create/error.html.twig
T

22 lines
681 B
Twig

{% extends 'layout.html.twig' %}
{% block title %}Fehler{% endblock %}
{% block content %}
<div class="container mx-auto px-4 py-8">
<div class="max-w-lg mx-auto">
{% set errorMessages = app.flashes('error')|default(['Es ist ein Fehler beim Starten des Buchungsvorgangs aufgetreten.']) %}
{% include '_partials/_alert.html.twig' with {
level: 'error',
title: 'Das hat nicht geklappt',
messages: errorMessages
} %}
{# hx-boost disabled for cross-origin #}
<a href="{{ returnUrl }}" hx-boost="false" class="button button--secondary">
Zurück
</a>
</div>
</div>
{% endblock %}