{% macro digitalmarketplaceOptionSelect(params) %} {%- from 'govuk_frontend_jinja/components/checkboxes/macro.html' import govukCheckboxes -%} {% set titleId = "option-select-title-" + params.name %} {% set closedOnLoad = True if params.closedOnLoad %}

{{ params.title }}

{{ govukCheckboxes({ "idPrefix": params.name, "name": params.name, "classes": "govuk-checkboxes--small", "fieldset": { "legend": { "html": params.title, "classes": "govuk-visually-hidden" } }, "items": params['items'] })}}
{% endmacro %}