mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
38 lines
643 B
Twig
38 lines
643 B
Twig
{% extends "common/index.html.twig" %}
|
|
|
|
{% block javascript %}
|
|
{% endblock %}
|
|
|
|
{% block stylesheet %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div data-role="page">
|
|
<div data-role="header">
|
|
<h1>{{module_name}}</h1>
|
|
</div>
|
|
<div data-role="content">
|
|
<h2 style="font-weight:bold;font-size:20px;margin:40px 0;">{% trans 'Erreur !' %}</h2>
|
|
<p>{% trans 'Le panier demande nexiste plus' %}</p>
|
|
<p>{{error}}</p>
|
|
<p><a style="color:black;" target="_self" href="{{ path('lightbox') }}">{% trans 'Retour a l\'accueil' %}</a></p>
|
|
</div>
|
|
<div data-role="footer">
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|