  <ul id="gift_list" class="item_list gift">
        {{#gift_items}}
            <li class="item">
                {{#eq promotion_code "6"}}
                    <span class="item_block delete">
                        <a class="delete_button" title="{{i18n "shoppingCartMainTemplate.eliminarProductoCarrito"}}"  onclick="javascript:showAlertDeleteItemForCart('{{catalog_ref_id}}');"></a>
                    </span>
                {{/eq}}
                <span class="item_block products">
                    <span id="item_description_{{catalog_ref_id}}" class="product_name">{{description}}</span>
                    <img class="product_image"  alt="{{description}}" data-original="{{MEDIA_CONTENT_URL}}/resize_64x67{{product_large_image}}" src="{{MEDIA_CONTENT_URL}}/resize_64x67{{product_large_image}}" width="64" height="67">
                </span>
                <span class="item_block units">{{quantity}}</span>
                <span class="item_block price"><span class="gift">{{i18n "shoppingCart.giftListTemplate.gift"}}</span></span>
            </li>
        {{/gift_items}}

        {{#if discountPromotionEntries}}
            <li class="item gift">
                <span class="item_block products">
                    <img class="product_image" alt="{{i18n "shoppingCart.giftListTemplate.discount"}}" data-original="{{STATIC_CONTENT_URL}}/images/voucher-discount.png" src="{{STATIC_CONTENT_URL}}/images/voucher-discount.png" width="64" height="67" style="display: block;">
                    <span class="product_name">{{#each discountPromotionEntries}}{{this}}<br><br>{{/each}}</span>
                </span>
            </li>
        {{/if}}

        {{#if infoPromotionEntries}}
            <li class="item gift">
                <span class="item_block products">
                    <img class="product_image" alt="{{i18n "shoppingCart.giftListTemplate.promotion"}}" data-original="{{STATIC_CONTENT_URL}}/images/info-discount.png" src="{{STATIC_CONTENT_URL}}/images/info-discount.png" width="64" height="67" style="display: block;">
                    <span class="product_name">{{#each infoPromotionEntries}}{{this}}<br><br>{{/each}}</span>
                </span>
            </li>
        {{/if}}
    </ul>