fork download
  1. {extends file='page.tpl'}
  2. {block name='page_content'}
  3. <p>
  4. {if !empty({$error})}
  5. {$error}
  6. {else}
  7. {if $locale == 'tr'}
  8. <span class="bold">Siparişiniz ve Ödemeniz Başarıyla Alındı.</span>
  9. <br/>
  10. <br/>
  11. Kredi Kartınızdan çekilen miktar {$total} {$currency}
  12. <br/>
  13. <br/>
  14. Teşekkür ederiz.
  15. {else}
  16. <span class="bold">Successfully Received your order and your payment.</span>
  17. <br/>
  18. <br/>
  19. The amount withdrawn from your credit card {$total} {$currency}
  20. <br/>
  21. <br/>
  22. Thank you.
  23. {/if}
  24. {/if}
  25. </p>
  26. {/block}
  27.  
Success #stdin #stdout 0.02s 23316KB
stdin
Standard input is empty
stdout
{extends file='page.tpl'}
{block name='page_content'}
<p>
   {if !empty({$error})}
        {$error}
   {else}
       {if $locale == 'tr'}
        <span class="bold">Siparişiniz ve Ödemeniz Başarıyla Alındı.</span>
        <br/>
        <br/>
        Kredi Kartınızdan çekilen miktar {$total} {$currency}
        <br/>
        <br/>
        Teşekkür ederiz.
        {else}
        <span class="bold">Successfully Received your order and your payment.</span>
        <br/>
        <br/>
        The amount withdrawn from your credit card {$total} {$currency}
        <br/>
        <br/>
        Thank you.
        {/if}
    {/if}
</p>
{/block}