<div class="hour_selection_container">
                                <p id="deliveryTitleText" class="delivery_title">{{i18n "checkoutStep1template.seleccionarHoraEntrega"}}</p>
                                <table class="hour_table">
                                    <tr>
                                        <th class="first_colum title1">{{i18n "deliveryTimeSlot.franja"}}<br>{{i18n "deliveryTimeSlot.horaria"}}</th>
                                        {{#each displayJson.display_slots}}
                                            <th class="first_colum">{{this.0.key}}</th>
                                        {{/each}}
                                    </tr>
                                      {{#each deliveryTimeSlot}}
                                          <tr>
                                             <th>
                                                {{#equals weekday 1}}{{i18n "checkoutStep1template.selectDeliveryAddress.domingo"}}{{/equals}}
                                                {{#equals weekday 2}}{{i18n "checkoutStep1template.selectDeliveryAddress.lunes"}}{{/equals}}
                                                {{#equals weekday 3}}{{i18n "checkoutStep1template.selectDeliveryAddress.martes"}}{{/equals}}
                                                {{#equals weekday 4}}{{i18n "checkoutStep1template.selectDeliveryAddress.miercoles"}}{{/equals}}
                                                {{#equals weekday 5}}{{i18n "checkoutStep1template.selectDeliveryAddress.jueves"}}{{/equals}}
                                                {{#equals weekday 6}}{{i18n "checkoutStep1template.selectDeliveryAddress.viernes"}}{{/equals}}
                                                {{#equals weekday 7}}{{i18n "checkoutStep1template.selectDeliveryAddress.sabado"}}{{/equals}}
                                                <br><span>{{short_formated_day}}</span>
                                             </th>
                                            {{#each slots}} 
                                                <td>
                                                        {{#equals status "available"}}
                                                            <label class="hour">
                                                                <input id="{{day}}:{{id}}" type="radio" name="hour" value="{{day}}:{{id}}" onclick="javascript:resetErrors()">
                                                                {{i18n "checkoutStep1template.selectDeliveryAddress.available"}}
                                                            </label>
                                                        {{/equals}}
                                                        {{#equals status "no-service"}}
                                                                <span>{{i18n "checkoutStep1template.selectDeliveryAddress.noavailable"}}</span>
                                                        {{/equals}}
                                                        {{#equals status "full"}}
                                                                <span>{{i18n "checkoutStep1template.selectDeliveryAddress.full"}}</span>
                                                        {{/equals}}
                                                </td>
                                            {{/each}}
                                     </tr>
                                    {{/each}}
                                </table>
                            </div>
