You are here

commerce-worldpay-success.html.twig in Commerce Worldpay 8

Same filename and directory in other branches
  1. 8.2 templates/commerce-worldpay-success.html.twig
<!DOCTYPE html>
<html lang="" version="HTML+RDFa 1.0" dir="">
<head profile="">
    <title></title>
    <!-- Embed the stylesheet stored on WorldPay's server -->
    <style type="text/css">
    </style>
</head>
<body>
<div id="page-wrapper">
    <div id="page">
        <div id="header">
            <div class="section">
                <div id="site-name">
                    <strong><span></span></strong>
                </div>
            </div>
        </div>
        <div id="main">
            <header>
                <h1></h1>
                <p>{{ 'Your transaction was successfuly recieved by WorldPay. Thank you.' }}</p>
                <table class="bartik">
                    <thead>
                    <tr>
                        <th>{{ 'Order No' }}</th>
                        <th>{{ 'WorldPay transaction code' }}</th>
                    </tr>
                    </thead>
                    <tbody>
                    <tr>
                        <td>{{ order_id }}</td>
                        <td>{{ transaction_id }}</td>
                    </tr>
                    </tbody>
                </table>
                <WPDISPLAY ITEM=banner></WPDISPLAY>
                <p id="return-url">
                    <a href="{{ return_url }}">Return on site</a>
                </p>
            </header>
        </div>
    </div>
</div>
</body>
</html>

File

templates/commerce-worldpay-success.html.twig
View source
  1. <!DOCTYPE html>
  2. <html lang="" version="HTML+RDFa 1.0" dir="">
  3. <head profile="">
  4. <title></title>
  5. <!-- Embed the stylesheet stored on WorldPay's server -->
  6. <style type="text/css">
  7. </style>
  8. </head>
  9. <body>
  10. <div id="page-wrapper">
  11. <div id="page">
  12. <div id="header">
  13. <div class="section">
  14. <div id="site-name">
  15. <strong><span></span></strong>
  16. </div>
  17. </div>
  18. </div>
  19. <div id="main">
  20. <header>
  21. <h1></h1>
  22. <p>{{ 'Your transaction was successfuly recieved by WorldPay. Thank you.' }}</p>
  23. <table class="bartik">
  24. <thead>
  25. <tr>
  26. <th>{{ 'Order No' }}</th>
  27. <th>{{ 'WorldPay transaction code' }}</th>
  28. </tr>
  29. </thead>
  30. <tbody>
  31. <tr>
  32. <td>{{ order_id }}</td>
  33. <td>{{ transaction_id }}</td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. <WPDISPLAY ITEM=banner></WPDISPLAY>
  38. <p id="return-url">
  39. <a href="{{ return_url }}">Return on site</a>
  40. </p>
  41. </header>
  42. </div>
  43. </div>
  44. </div>
  45. </body>
  46. </html>