Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion app/templates/components/orders/event-info.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,17 @@
<h3 class="weight-400">{{t 'When & Where'}}</h3>
</div>
<div class="ui padded segment">
<strong>{{t 'At'}} {{this.data.event.locationName}}</strong>
{{#if this.data.event.online}}
{{#if this.data.event.locationName}}
<strong>{{t 'Event taking place online and at'}} {{this.data.event.locationName}}</strong>
{{else}}
<strong>{{t 'Online Event'}}</strong>
{{/if}}
{{else if this.data.event.locationName}}
<strong>{{t 'At'}} {{this.data.event.locationName}}</strong>
{{else}}
<strong>{{t 'Location or online event details to be announced'}}</strong>
{{/if}}
<br>
<strong>{{t 'From'}}:</strong> {{header-date this.data.event.startsAt}}
<br>
Expand Down