{% if action.pageTitle|default(false) is not empty %}
{{ action.pageTitle|rawSafeDecoded }}
{% endif %}
{{ action.eventCategory|rawSafeDecoded }}
- {{ action.eventAction|rawSafeDecoded }} {% if action.eventName is defined %}- {{ action.eventName|rawSafeDecoded }}{% endif %} {% if action.eventValue is defined %}[{{ action.eventValue }}]{% endif %}
{% if action.url is not empty %}
{% if previousAction.url|default(false) == action.url %}
{# For events, do not show (url) if the Event URL is the same as the URL last displayed #}
{% else %}
{% if action.url|trim|lower starts with 'javascript:' or
action.url|trim|lower starts with 'vbscript:' or
action.url|trim|lower starts with 'data:' %}
{{ action.url }}
{% else %}
{{ action.url|replace({'http://': '', 'https://': ''}) }}
{% endif %}
{% endif %}
{% endif %}