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
18 changes: 10 additions & 8 deletions app/templates/components/public/speaker-item.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,21 @@
{{#if session.startsAt}}
{{moment-format session.startsAt 'DD MMM YY'}}
{{/if}}
<br>
<span class="session-location">
<strong>
{{session.microlocation.name}}
</strong>
</span>
{{#if session.microlocation}}
<br>
<span class="session-location">
<strong>
{{concat (t 'Microlocation - ') session.microlocation.name}}
</strong>
</span>
{{/if}}
</p>
<div class="ui fluid padded" style={{-html-safe (concat "color: " session.track.fontColor "px; background-color: " session.track.color ";")}}>
<div class="ui fluid padded" style={{css color=session.track.fontColor background-color=session.track.color}}>
<h3 class="item">
{{#if (and session.startsAt session.endsAt)}}
{{moment-format session.startsAt 'HH:mm'}} - {{moment-format session.endsAt 'hh:mm'}}
<br>
{{/if}}
<br>
&bull;&nbsp; {{session.title}}
<br>
</h3>
Expand Down