Change speaker key to label

This commit is contained in:
Oliver Davies 2019-05-22 20:12:34 +01:00
parent 12ede023c7
commit ac4af4dbd7
2 changed files with 18 additions and 18 deletions

View file

@ -15,55 +15,55 @@ papercall:
schedule:
slots:
- time: 8:30 am
speaker: Registration and refreshments
label: Registration and refreshments
- time: 9:00 am
speaker: Welcome
label: Welcome
- time: 9:10 am
speaker: Dan McNamara
label: Dan McNamara
- time: 10:00 am
speaker: TBA
label: TBA
- time: 10:30 am
speaker: Refreshments
label: Refreshments
- time: 10:50 am
speaker: TBA
label: TBA
- time: 11:40 am
speaker: TBA
label: TBA
- time: 12:10 pm
speaker: Lunch
label: Lunch
- time: 1:10 pm
speaker: TBA
label: TBA
- time: 2:00 pm
speaker: TBA
label: TBA
- time: 2:15 pm
speaker: TBA
label: TBA
- time: 2:30 pm
speaker: Refreshments
label: Refreshments
- time: 2:50 pm
speaker: TBC
label: TBC
- time: 3:05 pm
speaker: TBC
label: TBC
- time: 3:20 pm
speaker: Matt Haworth
label: Matt Haworth
- time: 4:10 pm
speaker: Closing remarks
label: Closing remarks
- time: 4:40 pm
speaker: Drinks reception
label: Drinks reception
tickets:
available: true

View file

@ -6,7 +6,7 @@
{% for slot in slots %}
<li class="tw-pt-4 lg:tw-pt-6 {{ loop.last ?: 'tw-pb-4 lg:tw-pb-6 tw-border-solid tw-border-0 tw-border-b tw-border-purple-400' }}">
<span class="tw-flex tw-items-center tw-justify-between tw--mx-6">
<span class="tw-px-6 tw-text-gray-200 tw-flex-1 tw-text-left">{{ slot.speaker }}</span>
<span class="tw-px-6 tw-text-gray-200 tw-flex-1 tw-text-left">{{ slot.label }}</span>
<span class="tw-px-6 tw-font-semibold">{{ slot.time }}</span>
</span>
</li>