60 lines
2.8 KiB
Smarty
60 lines
2.8 KiB
Smarty
<section class="cyp-withdrawal-page">
|
|
<header class="page-header">
|
|
<h1>{l s='Widerruf übermittelt' mod='simple_withdrawalbutton'}</h1>
|
|
</header>
|
|
|
|
<div class="card card-block">
|
|
{if isset($success_data.mail_ok) && $success_data.mail_ok}
|
|
<div class="alert alert-success">
|
|
{l s='Ihr Widerruf wurde übermittelt. Eine Eingangsbestätigung wurde an die angegebene E-Mail-Adresse gesendet.' mod='simple_withdrawalbutton'}
|
|
</div>
|
|
{else}
|
|
<div class="alert alert-warning">
|
|
{l s='Ihr Widerruf wurde gespeichert, aber die automatische Eingangsbestätigung konnte möglicherweise nicht versendet werden. Bitte kontaktieren Sie uns zusätzlich per E-Mail, falls Sie keine Bestätigung erhalten.' mod='simple_withdrawalbutton'}
|
|
</div>
|
|
{/if}
|
|
|
|
<dl class="row">
|
|
{if isset($success_data.created_at)}
|
|
<dt class="col-sm-4">{l s='Eingang:' mod='simple_withdrawalbutton'}</dt>
|
|
<dd class="col-sm-8">{$success_data.created_at|escape:'html':'UTF-8'}</dd>
|
|
{/if}
|
|
|
|
{if isset($success_data.customer_email)}
|
|
<dt class="col-sm-4">{l s='E-Mail-Adresse:' mod='simple_withdrawalbutton'}</dt>
|
|
<dd class="col-sm-8">{$success_data.customer_email|escape:'html':'UTF-8'}</dd>
|
|
{/if}
|
|
|
|
{if isset($success_data.order_reference) && $success_data.order_reference != ''}
|
|
<dt class="col-sm-4">{l s='Bestellnummer / Bestellreferenz' mod='simple_withdrawalbutton'}</dt>
|
|
<dd class="col-sm-8">{$success_data.order_reference|escape:'html':'UTF-8'}</dd>
|
|
{/if}
|
|
|
|
{if isset($success_data.withdrawal_scope)}
|
|
<dt class="col-sm-4">{l s='Widerruf betrifft' mod='simple_withdrawalbutton'}</dt>
|
|
<dd class="col-sm-8">
|
|
{if $success_data.withdrawal_scope == 'partial'}
|
|
{l s='einen Teil der Bestellung' mod='simple_withdrawalbutton'}
|
|
{else}
|
|
{l s='die gesamte Bestellung' mod='simple_withdrawalbutton'}
|
|
{/if}
|
|
</dd>
|
|
{/if}
|
|
|
|
{if isset($success_data.withdrawal_items_text) && $success_data.withdrawal_items_text != ''}
|
|
<dt class="col-sm-4">{l s='Betroffene Artikel / Mengen' mod='simple_withdrawalbutton'}</dt>
|
|
<dd class="col-sm-8">{$success_data.withdrawal_items_text|escape:'html':'UTF-8'|nl2br nofilter}</dd>
|
|
{/if}
|
|
|
|
{if isset($success_data.message) && $success_data.message != ''}
|
|
<dt class="col-sm-4">{l s='Nachricht / Bemerkung' mod='simple_withdrawalbutton'}</dt>
|
|
<dd class="col-sm-8">{$success_data.message|escape:'html':'UTF-8'|nl2br nofilter}</dd>
|
|
{/if}
|
|
</dl>
|
|
|
|
<p class="small text-muted">
|
|
{l s='Diese Bestätigung betrifft nur den Eingang Ihrer Widerrufserklärung. Die weitere Bearbeitung und Prüfung erfolgt separat.' mod='simple_withdrawalbutton'}
|
|
</p>
|
|
</div>
|
|
</section>
|