remove title from detail event
This commit is contained in:
@@ -2,16 +2,12 @@
|
|||||||
v-container
|
v-container
|
||||||
//- EVENT PAGE
|
//- EVENT PAGE
|
||||||
//- gancio supports microformats (http://microformats.org/wiki/h-event)
|
//- gancio supports microformats (http://microformats.org/wiki/h-event)
|
||||||
v-card.h-event
|
v-card.h-event(v-on:keyup="$router.push(`/event/${event.next}`)")
|
||||||
v-card-text
|
v-card-text
|
||||||
|
|
||||||
//- event admin controls
|
//- admin controls
|
||||||
EventAdmin(v-if='is_mine' :event='event')
|
EventAdmin(v-if='is_mine' :event='event')
|
||||||
|
|
||||||
//- Title
|
|
||||||
//- .text-h5.text-sm-h4
|
|
||||||
//- b.p-name {{event.title}}
|
|
||||||
|
|
||||||
v-row
|
v-row
|
||||||
v-col.col-12.col-lg-8
|
v-col.col-12.col-lg-8
|
||||||
v-img.main_image.mb-3(
|
v-img.main_image.mb-3(
|
||||||
@@ -37,7 +33,7 @@ v-container
|
|||||||
v-icon mdi-calendar
|
v-icon mdi-calendar
|
||||||
b.ml-2 {{event|when}}
|
b.ml-2 {{event|when}}
|
||||||
p.subtitle-1 {{event.start_datetime|from}}
|
p.subtitle-1 {{event.start_datetime|from}}
|
||||||
|
|
||||||
.text-h5.p-location
|
.text-h5.p-location
|
||||||
v-icon mdi-map-marker
|
v-icon mdi-map-marker
|
||||||
b.vcard.ml-2 {{event.place.name}}
|
b.vcard.ml-2 {{event.place.name}}
|
||||||
@@ -73,7 +69,6 @@ v-container
|
|||||||
v-list-item-content.primary--text.text-uppercase
|
v-list-item-content.primary--text.text-uppercase
|
||||||
//- v-btn(nuxt block link :href='`/api/event/${event.id}.ics`' text color='primary') {{$t('common.add_to_calendar')}}
|
//- v-btn(nuxt block link :href='`/api/event/${event.id}.ics`' text color='primary') {{$t('common.add_to_calendar')}}
|
||||||
|
|
||||||
|
|
||||||
.p-description.text-h6(v-html='event.description')
|
.p-description.text-h6(v-html='event.description')
|
||||||
v-chip.p-category.ml-1(v-for='tag in event.tags' color='primary'
|
v-chip.p-category.ml-1(v-for='tag in event.tags' color='primary'
|
||||||
outlined :key='tag' v-text='tag')
|
outlined :key='tag' v-text='tag')
|
||||||
|
|||||||
Reference in New Issue
Block a user