-
Notifications
You must be signed in to change notification settings - Fork 2
/
confirmation.tpl
20 lines (20 loc) · 1.31 KB
/
confirmation.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{if $status == 'ok'}
<p>{l s='Your order on %s is complete.' sprintf=$shop_name mod='mondidopay'}
<br /><br /><span class="bold">{l s='Your order will be shipped as soon as possible.' mod='mondidopay'}</span>
<br /><br />{l s='For any questions or for further information, please contact our' mod='mondidopay'} <a href="{$link->getPageLink('contact', true)|escape:'html'}">{l s='customer support' mod='mondidopay'}</a>.
</p>
{else}
{if $status == 'pending'}
<p>{l s='Your order on %s is pending.' sprintf=$shop_name mod='mondidopay'}
<br /><br /><span class="bold">{l s='Your order will be shipped as soon as we receive your payment.' mod='mondidopay'}</span>
<br /><br />{l s='For any questions or for further information, please contact our' mod='mondidopay'} <a href="{$link->getPageLink('contact', true)|escape:'html'}">{l s='customer support' mod='mondidopay'}</a>.
</p>
{else}
<p class="warning">
{l s='We noticed a problem with your order. If you think this is an error, you can contact our' mod='mondidopay'}
<a href="{$link->getPageLink('contact', true)|escape:'html'}">{l s='customer support' mod='mondidopay'}</a>.
<br />
{l s='Details: %s.' sprintf=$message mod='mondidopay'}
</p>
{/if}
{/if}