Merge branch 'master' into feat/whereinputadvanced_rebased

This commit is contained in:
lesion
2023-04-03 22:19:33 +02:00

View File

@@ -34,21 +34,21 @@ v-container#event.pa-2.pa-sm-2(itemscope itemtype="https://schema.org/Event" v-t
v-chip.p-category.ml-1.mt-1(v-for='tag in event.tags' small label color='primary' v-chip.p-category.ml-1.mt-1(v-for='tag in event.tags' small label color='primary'
outlined :key='tag' :to='`/tag/${encodeURIComponent(tag)}`') {{tag}} outlined :key='tag' :to='`/tag/${encodeURIComponent(tag)}`') {{tag}}
//- online events //- online events
v-divider(v-if='onlineSectionEnabled && event.online_locations && event.online_locations.length') v-divider(v-if='onlineSectionEnabled && event.online_locations && event.online_locations.length')
div(v-if='onlineSectionEnabled && event.online_locations && event.online_locations.length') div(v-if='onlineSectionEnabled && event.online_locations && event.online_locations.length')
v-card-text.text-caption.pb-0(v-text="event.place.name === 'online' && $t('event.event_only_online') || $t('event.event_also_online') ") v-card-text.text-caption.pb-0(v-text="event.place.name === 'online' && $t('event.event_only_online') || $t('event.event_also_online') ")
v-list-item(target='_blank' :href='`${event.online_locations[0]}`') v-list-item(target='_blank' :href='`${event.online_locations[0]}`')
v-list-item-icon v-list-item-icon
v-icon.my-auto(v-text='mdiMonitorAccount') v-icon.my-auto(v-text='mdiMonitorAccount')
v-list-item-content.py-0 v-list-item-content.py-0
v-list-item-title.text-caption(v-text='`${event.online_locations[0]}`') v-list-item-title.text-caption(v-text='`${event.online_locations[0]}`')
div(v-if='onlineSectionEnabled && event.online_locations && event.online_locations.length > 1') div(v-if='onlineSectionEnabled && event.online_locations && event.online_locations.length > 1')
v-card-text.text-caption.pt-0.pb-0(v-text="$t('event.online_locations_fallback_urls')") v-card-text.text-caption.pt-0.pb-0(v-text="$t('event.online_locations_fallback_urls')")
v-list-item v-list-item
v-list-item-content v-list-item-content
v-chip(v-for='(item, index) in event.online_locations' v-if="index > 0" target='_blank' :href="`${item}`" v-chip(v-for='(item, index) in event.online_locations' v-if="index > 0" target='_blank' :href="`${item}`"
v-bind:key="index" small label v-text="`${item}`" outlined ) v-bind:key="index" small label v-text="`${item}`" outlined )
v-divider v-divider
//- info & actions //- info & actions