You are here

price-plain.html.twig in Price 3.x

Default theme implementation for displaying a price.

Used by the 'price_plain' formatter. Available variables:

  • number: The number.
  • currency: The currency entity.

File

templates/price-plain.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for displaying a price.
  5. *
  6. * Used by the 'price_plain' formatter.
  7. * Available variables:
  8. * - number: The number.
  9. * - currency: The currency entity.
  10. *
  11. * @ingroup themeable
  12. */
  13. #}
  14. {{ number|number_format(2, '.', ',') }} {{ currency.currencyCode }}