Initial commit

This commit is contained in:
2021-01-19 18:19:37 +01:00
commit 6524a071df
14506 changed files with 1808535 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
{* Set the default translation domain, that will be used by {intl} when the 'd' parameter is not set *}
{default_translation_domain domain='fo.default'}
{form name="thelia.order.delivery"}
{ifloop rel="deliveries"}
<table class="table table-condensed table-delivery">
<tbody>
{loop type="delivery" name="deliveries" force_return="true" address=$address}
{assign var="isDeliveryMethodChecked" value="0"}
<tr id="delivery-module-{$ID}">
<td>
<div class="radio">
{form_field field='delivery-module'}
{if $isPost}
{if $value == $ID}
{assign var="isDeliveryMethodChecked" value="1"}
{/if}
{elseif $LOOP_COUNT == 1}
{assign var="isDeliveryMethodChecked" value="1"}
{/if}
<label for="delivery-method_{$ID}">
<input type="radio" name="{$name}" id="delivery-method_{$ID}" class="js-change-delivery-method" {if $isDeliveryMethodChecked} checked="checked"{/if} value="{$ID}">
<p>
<strong>{$TITLE}</strong>
<br>
<span class="help-block">{$DESCRIPTION nofilter}</span>
{if $DELIVERY_DATE}
<br>
<span class="help-block">
{intl l="Expected delivery date: %delivery_date" delivery_date={format_date date=$DELIVERY_DATE output="date"}}
</span>
{/if}
</p>
</label>
{/form_field}
</div>
</td>
<td class="image">
{loop type="image" name="deliveryspicture" source="module" source_id=$ID force_return="true" width="100" height="72"}
<img src="{$IMAGE_URL nofilter}" alt="{$TITLE}">
{/loop}
</td>
<td>
<div class="price">
{if $POSTAGE}
{format_money number=$POSTAGE symbol={currency attr='symbol'}}
{else}
&nbsp;
{/if}
</div>
</td>
</tr>
{hook name="order-delivery.extra" module="$ID"}
{hook name="order-delivery.javascript" module="$ID"}
{/loop}
{/ifloop}
{elseloop rel="deliveries"}<div class="alert alert-warning">{intl l="<strong>Sorry!</strong> We are not able to give you a delivery method for your order."}</div>{/elseloop}
{/form}