{% macro govukSummaryList(params) %} {%- macro _actionLink(action) %} {{ action.html | safe if action.html else action.text }} {%- if action.visuallyHiddenText -%} {{ action.visuallyHiddenText }} {% endif -%} {% endmacro -%} {# Determine if we need 2 or 3 columns #} {% set ns = namespace(anyRowHasActions = False) %} {% for row in params.rows %} {% set ns.anyRowHasActions = True if row.actions and row.actions['items'] | length else ns.anyRowHasActions %} {% endfor -%}