LivraisonParSecteurs > front : rajout de la case à cocher

This commit is contained in:
2021-02-18 17:56:35 +01:00
parent ccaf4c7719
commit b688d5e161

View File

@@ -33,14 +33,16 @@
<div class="table-responsive">
<table class="table table-striped table-condensed">
<thead>
<th>{intl l='Delivery day' d='livraisonparsecteurs'}</th>
<th>{intl l='Schedule' d='livraisonparsecteurs'}</th>
<th style="text-align: center">{intl l='Delivery day' d='livraisonparsecteurs'}</th>
<th style="text-align: center">{intl l='Schedule' d='livraisonparsecteurs'}</th>
<th style="text-align: center">{intl l='Choose this day' d='livraisonparsecteurs'}</th>
</thead>
<tbody>
{loop type="lps_area_schedule" name="area-schedule" area_id={$area_id}}
<tr>
<td style="padding:10px;">{$DAY_LABEL}</td>
<td style="padding:10px;">{format_date date=$BEGIN format="H:i"} / {format_date date=$END format="H:i"}</td>
<td style="padding:10px; text-align: center">{$DAY_LABEL}</td>
<td style="padding:10px; text-align: center">{format_date date=$BEGIN format="H:i"} / {format_date date=$END format="H:i"}</td>
<td style="padding:10px; text-align: center"><input type="radio" id="choosen-day" name="checkbox-delivery-day"/></td>
</tr>
{/loop}
</tbody>