You are here

uc-cart-complete-sale.html.twig in Ubercart 8.4

{#
/**
 * @file
 * Default theme implementation to display the checkout completion page.
 *
 * Available variables:
 * - order: The order that was completed.
 * - message: A message to display to the user.
 * - front_page: The URL of the front page.
 *
 * @ingroup themeable
#}

<p>{{ 'Your order is complete! Your order number is @number.'|t({'@number': order.id}) }}</p>

{{ message }}

<p><a href="{{ front_page }}">{{ 'Return to the front page.'|t }}</a></p>

File

uc_cart/templates/uc-cart-complete-sale.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display the checkout completion page.
  5. *
  6. * Available variables:
  7. * - order: The order that was completed.
  8. * - message: A message to display to the user.
  9. * - front_page: The URL of the front page.
  10. *
  11. * @ingroup themeable
  12. #}
  13. <p>{{ 'Your order is complete! Your order number is @number.'|t({'@number': order.id}) }}</p>
  14. {{ message }}
  15. <p><a href="{{ front_page }}">{{ 'Return to the front page.'|t }}</a></p>