Files
Phraseanet/templates/web/prod/actions/Bridge/error.html.twig
2013-12-20 16:44:22 +01:00

31 lines
764 B
Twig

{% extends "prod/actions/Bridge/wrapper.html.twig" %}
{% set n_element = elements|length %}
{% block menu %}
{% endblock %}
{% block response %}
<div style="text-align:center;margin:10px 0;">
{{ 'Oups ! something went wrong !' | trans }}
</div>
<div style="text-align:center;margin:10px 0;">
<form method="{{r_method}}" action="{{r_action}}">
{% for key, value in r_parameters %}
<input type="hidden" name="{{key}}" value="{{value}}" />
{% endfor %}
<button class="form_submitter" >{{ 'boutton::retry' | trans }}</button>
</form>
</div>
<div style="text-align:center;margin:10px 0;">
Details : {{message}}
</div>
{% if app['debug'] %}
<div>
{{file}}:{{line}}
</div>
{% endif %}
{% endblock %}