diff --git a/app/templates/components/ui-table/cell/admin/sales/status/cell-amount.hbs b/app/templates/components/ui-table/cell/admin/sales/status/cell-amount.hbs index cc4fc31e903..be314611fad 100644 --- a/app/templates/components/ui-table/cell/admin/sales/status/cell-amount.hbs +++ b/app/templates/components/ui-table/cell/admin/sales/status/cell-amount.hbs @@ -1,3 +1,3 @@ US$ {{number-format record.amount}} - \ No newline at end of file + diff --git a/app/templates/components/ui-table/cell/events/view/tickets/cell-add-order-total.hbs b/app/templates/components/ui-table/cell/events/view/tickets/cell-add-order-total.hbs index e7363061e5d..e66dc294d8b 100644 --- a/app/templates/components/ui-table/cell/events/view/tickets/cell-add-order-total.hbs +++ b/app/templates/components/ui-table/cell/events/view/tickets/cell-add-order-total.hbs @@ -1 +1 @@ -{{number-format (mult record.orderQuantity record.price)}} \ No newline at end of file +{{currency-symbol paymentCurrency}} {{number-format (mult record.orderQuantity record.price)}} \ No newline at end of file diff --git a/app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-value.hbs b/app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-value.hbs index 6efade28ad3..41ce3a349a7 100644 --- a/app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-value.hbs +++ b/app/templates/components/ui-table/cell/events/view/tickets/discount-codes/cell-value.hbs @@ -2,6 +2,6 @@ {{#if (eq record.type 'percent')}} {{number-format record.value}}{{t '%'}} {{else if (eq record.type 'amount')}} - {{t 'US$ '}}{{number-format record.value}} + {{t currency-symbol record.event.paymentCurrency }}{{number-format record.value}} {{/if}} diff --git a/app/templates/events/view/tickets/index.hbs b/app/templates/events/view/tickets/index.hbs index df635e40a3c..8f869b70f25 100644 --- a/app/templates/events/view/tickets/index.hbs +++ b/app/templates/events/view/tickets/index.hbs @@ -144,11 +144,11 @@