{% for item in module.grupo_de_testimonio %}
	{% if item.mostrar_imagen %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.image_field.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.image_field.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.image_field.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.image_field.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
	{% set href = item.enlace_video.url.href %}
	{% if item.enlace_video.url.type is equalto "EMAIL_ADDRESS" %}
	  {% set href = "mailto:" + href %}
	{% endif %}
	<a
	  {% if item.enlace_video.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 item.enlace_video.open_in_new_tab %}
	    target="_blank"
	  {% endif %}
	  {% if item.enlace_video.rel %}
	    rel=""
	  {% endif %}
	  >
	  Link text
	</a>
	{% if item.video_hubspot %}
		<!-- HTML to show when checked -->
	{% endif %}
	{% if item.videoplayer_field.player_id %}
	  {% set max_width = item.videoplayer_field.size_type == 'auto_custom_max' ? item.videoplayer_field.max_width : item.videoplayer_field.width %}
	  {% set max_height = item.videoplayer_field.size_type == 'auto_custom_max' ? item.videoplayer_field.max_height : item.videoplayer_field.height %}
	  {% video_player "embed_player"
	    player_id=
	    type=
	    full_width=,
	    conversion_asset=
	    autoplay=
	    hidden_controls=
	    loop=
	    muted=
	  %}
	{% endif %}
	{% for item2 in item.estrella_rellena %}
		{% if item2 %}
			<!-- HTML to show when checked -->
		{% endif %}
	{% endfor %}
	{% inline_text field="testimonio" value="" %}
	
	{% inline_text field="nombre" value="" %}
	{% inline_text field="compa_a" value="" %}
	{% if item.logo.src %}
		{% set sizeAttrs = 'width="" height=""' %}
		{% if item.logo.size_type == 'auto' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% elif item.logo.size_type == 'auto_custom_max' %}
			{% set sizeAttrs = 'width="" height="" style="max-width: 100%; height: auto;"' %}
		{% endif %}
		 {% set loadingAttr = item.logo.loading != 'disabled' ? 'loading=""' : '' %}
		<img src="" alt=""  >
	{% endif %}
{% endfor %}