templates/helper/toasts.flash.html.twig line 1
<script type="text/javascript">
time = 500;
options = {title:"{{'Notification'|trans}}", message:"", time, duration: "{{'Maintenant'|trans}}", icon: 'primary', autohide:'true', delay:"10000"}
// Flexbox container for aligning the toasts -->
{% for flash in app.flashes('error') %}
time += 1000;
$.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"danger"}});
{% endfor %}
{% for flash in app.flashes('warning') %}
time += 1000;
$.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"warning"}});
{% endfor %}
{% for flash in app.flashes('success') %}
time += 1000;
$.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"success"}});
{% endfor %}
{% for flash in app.flashes('info') %}
time += 1000;
$.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"info"}});
{% endfor %}
autohide = false;
{% for flash in app.flashes('error_message') %}
time += 500;
$.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"danger", autohide}});
{% endfor %}
{% for flash in app.flashes('warning_message') %}
time += 500;
$.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"warning", autohide}});
{% endfor %}
{% for flash in app.flashes('success_message') %}
time += 500;
$.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"success", autohide}});
{% endfor %}
{% for flash in app.flashes('info_message') %}
time += 500;
$.urban.toasts.instances.push({...options, ...{time, message:"{{flash}}", icon:"info", autohide}});
{% endfor %}
</script>