complete.tpl 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {include file="orderforms/{$carttpl}/common.tpl"}
  2. {if file_exists("templates/orderforms/{$carttpl}/layouts/head.tpl")}
  3. {include file="templates/orderforms/{$carttpl}/layouts/head.tpl"}
  4. {/if}
  5. <div id="order-standard_cart">
  6. <div class="alert-lg no-data">
  7. <div class="text">
  8. <h4>{$LANG.orderreceived}</h4>
  9. <div class="alert alert-info order-confirmation">
  10. {$LANG.ordernumberis} <span>{$ordernumber}</span>
  11. </div>
  12. <p>{$LANG.orderfinalinstructions}</p>
  13. {if $expressCheckoutInfo}
  14. <div class="alert alert-info text-center">
  15. {$expressCheckoutInfo}
  16. </div>
  17. {elseif $expressCheckoutError}
  18. <div class="alert alert-danger text-center">
  19. {$expressCheckoutError}
  20. </div>
  21. {elseif $invoiceid && !$ispaid}
  22. <div class="alert alert-warning text-center">
  23. {$LANG.ordercompletebutnotpaid}
  24. <br /><br />
  25. <a href="viewinvoice.php?id={$invoiceid}" target="_blank" class="alert-link">
  26. {$LANG.invoicenumber}{$invoiceid}
  27. </a>
  28. </div>
  29. {/if}
  30. </div>
  31. {foreach $addons_html as $addon_html}
  32. <div class="order-confirmation-addon-output">
  33. {$addon_html}
  34. </div>
  35. {/foreach}
  36. {if $ispaid}
  37. <!-- Enter any HTML code which should be displayed when a user has completed checkout here -->
  38. <!-- Common uses of this include conversion and affiliate tracking scripts -->
  39. {/if}
  40. <a href="clientarea.php" class="btn btn-default">
  41. {$LANG.orderForm.continueToClientArea}
  42. </a>
  43. </div>
  44. </div>
  45. {if file_exists("templates/orderforms/{$carttpl}/layouts/foot.tpl")}
  46. {include file="templates/orderforms/{$carttpl}/layouts/foot.tpl"}
  47. {/if}