{% for item in module.row %}
	
	{% for item2 in item.row %}
		
		{% inline_rich_text field="test" value="" %}
		{% inline_text field="btn_txt" value="" %}
		{% set href = item2.btn_link.url.href %}
		{% if item2.btn_link.url.type is equalto "EMAIL_ADDRESS" %}
		  {% set href = "mailto:" + href %}
		{% elif item2.btn_link.url.type is equalto "PHONE_NUMBER" %}
		  {% set href = "tel:" + href %}
		{% endif %}
		<a
		  {% if item2.btn_link.url.type is equalto "CALL_TO_ACTION"  %}
		    href="" {# The href here is not escaped as it is not editable and functions as a JavaScript call to the associated CTA #}
		  {% else %}
		    href=""
		  {% endif %}
		  {% if item2.btn_link.open_in_new_tab %}
		    target="_blank"
		  {% endif %}
		  {% if item2.btn_link.rel %}
		    rel=""
		  {% endif %}
		  >
		  Link text
		</a>
		{% if item2.left_check %}
			<!-- HTML to show when checked -->
		{% endif %}
	{% endfor %}
{% endfor %}