{% extends "Global/layout.html.twig" %}
{% set pagetitle = 'Your payment could not be processed at this time'|trans %}
{% block title %}{{pagetitle}}{% endblock %}
{% block content %}
{% set navigation = [{"current":(pagetitle)}] %}
{% include "Global/navigation.html.twig" with navigation %}
{% if paymentdetails.L_SHORTMESSAGE0 is defined and paymentdetails.L_LONGMESSAGE0 is defined %}
{% include 'Global/message.html.twig' with { type: 'error',icon: 'fas fa-info', message: "" ~ paymentdetails.L_SHORTMESSAGE0 ~ " " ~ paymentdetails.L_LONGMESSAGE0 } %}
{% else %}
{% include 'Global/message.html.twig' with { type: 'error',icon: 'fas fa-info', message: pagetitle } %}
{% endif %}