Ubuntu
{% if visitorData.totalPageViews > 0 %}
{{ 'Actions_RevisitedPages'|translate }}
{% for url,count in visitorData.visitedPages %}
{% if loop.index < 6 and count > 1 %}
- {{ count }}
{% if url|trim|lower starts with 'javascript:' or
url|trim|lower starts with 'vbscript:' or
url|trim|lower starts with 'data:' %}
{{ url }}
{% else %}
{{ url|replace({'http://': '', 'https://': ''}) }}
{% endif %}
{% endif %}
{% endfor %}
{% endif %}