mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
re-minor on event/_slug
This commit is contained in:
parent
434d0904f4
commit
3ca86b9a3b
1 changed files with 13 additions and 13 deletions
|
@ -38,19 +38,19 @@ v-container#event.pa-0.pa-sm-2
|
|||
|
||||
//- online events
|
||||
v-divider(v-if='onlineSectionEnabled && event.locations && event.locations.length')
|
||||
v-card-text.text-caption.pb-0(v-if='onlineSectionEnabled && event.locations && event.locations.length'
|
||||
v-text="event.place.name === 'online' && $t('event.event_only_online') || $t('event.event_also_online') ")
|
||||
v-list-item(target='_blank' :href='`${event.locations[0]}`')
|
||||
v-list-item-icon
|
||||
v-icon.my-auto(v-text='mdiMonitorAccount')
|
||||
v-list-item-content.py-0
|
||||
v-list-item-title.text-caption(v-text='`${event.locations[0]}`')
|
||||
v-card-text.text-caption.pt-0.pb-0(v-if='onlineSectionEnabled && event.locations && event.locations.length > 1'
|
||||
v-text="$t('event.online_locations_fallback_urls')")
|
||||
v-list-item(v-if='onlineSectionEnabled && event.locations && event.locations.length > 1')
|
||||
v-list-item-content
|
||||
v-chip(v-for='(item, index) in event.locations' v-if="index > 0" target='_blank' :href="`${item}`"
|
||||
v-bind:key="index" small label v-text="`${item}`" outlined )
|
||||
div(v-if='onlineSectionEnabled && event.locations && event.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-list-item(target='_blank' :href='`${event.locations[0]}`')
|
||||
v-list-item-icon
|
||||
v-icon.my-auto(v-text='mdiMonitorAccount')
|
||||
v-list-item-content.py-0
|
||||
v-list-item-title.text-caption(v-text='`${event.locations[0]}`')
|
||||
div(v-if='onlineSectionEnabled && event.locations && event.locations.length > 1')
|
||||
v-card-text.text-caption.pt-0.pb-0(v-text="$t('event.online_locations_fallback_urls')")
|
||||
v-list-item
|
||||
v-list-item-content
|
||||
v-chip(v-for='(item, index) in event.locations' v-if="index > 0" target='_blank' :href="`${item}`"
|
||||
v-bind:key="index" small label v-text="`${item}`" outlined )
|
||||
|
||||
v-divider
|
||||
//- info & actions
|
||||
|
|
Loading…
Reference in a new issue