{% for data in pages %}
{% if pagePropertyName %}
{% set listPage = data[pagePropertyName] %}
{% else %}
{% set listPage = data %}
{% endif %}
-
{{ decodeURIComponent(listPage.path) }}
{% if listPage.isPortal() %}
PORTAL
{% endif %}
{% if listPage.isTemplate() %}
TMPL
{% endif %}
{% if listPage.commentCount > 0 %}
{{ listPage.commentCount }}
{% endif %}
{% if listPage.liker.length > 0 %}
{{ listPage.liker.length }}
{% endif %}
{% if viewConfig.seener_threshold and listPage.seenUsers.length >= viewConfig.seener_threshold %}
{{ listPage.seenUsers.length }}
{% endif %}
{% if !listPage.isPublic() %}
{% endif %}
{% endfor %}
{% if pager %}
{% endif %}