File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
app/templates/components/orders Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 88
88
{{ ticket.name }}
89
89
</div >
90
90
</td >
91
- <td >{{ currency-symbol this.eventCurrency }} {{ format-money ticket.price }} </td >
91
+ <td >
92
+ {{ #if (eq ticket.type ' free' )}}
93
+ {{ t " Free" }}
94
+ {{ else }}
95
+ {{ currency-symbol this.eventCurrency }} {{ format-money ticket.price }}
96
+ {{ /if }}
97
+ </td >
92
98
{{ #if this.data.discountCode }}
93
99
<td >{{ currency-symbol this.eventCurrency }} {{ format-money ticket.discount }} </td >
94
100
{{ /if }}
107
113
</td >
108
114
{{ /if }}
109
115
<td >
110
- {{ currency-symbol this.eventCurrency }} {{ format-money (mult (sub ticket.price ticket.discount ) (ticket-attendees this.data.attendees ticket.attendees ))}}
116
+ {{ #if (eq ticket.type ' free' )}}
117
+ {{ t " Free" }}
118
+ {{ else }}
119
+ {{ currency-symbol this.eventCurrency }} {{ format-money (mult (sub ticket.price ticket.discount ) (ticket-attendees this.data.attendees ticket.attendees ))}}
120
+ {{ /if }}
111
121
</td >
112
122
{{ /if }}
113
123
You can’t perform that action at this time.
0 commit comments