minor
This commit is contained in:
parent
be0cfc5d2a
commit
4853e4fbdf
3 changed files with 10 additions and 3 deletions
|
@ -1,13 +1,19 @@
|
||||||
<template lang="pug">
|
<template lang="pug">
|
||||||
v-container#home(fluid)
|
v-container#home(fluid)
|
||||||
|
|
||||||
|
//- Announcements
|
||||||
Announcement(v-for='announcement in announcements' :key='`a_${announcement.id}`' :announcement='announcement')
|
Announcement(v-for='announcement in announcements' :key='`a_${announcement.id}`' :announcement='announcement')
|
||||||
|
|
||||||
#calbar.row.mb-2
|
#calbar.row.mb-2
|
||||||
.col-xl-5.col-lg-5.col-sm-5.col-xs-12
|
.col-xl-5.col-lg-5.col-sm-5.col-xs-12
|
||||||
|
|
||||||
|
//- this is needed as v-calendar does not support SSR
|
||||||
|
//- https://github.com/nathanreyes/v-calendar/issues/336
|
||||||
client-only
|
client-only
|
||||||
Calendar
|
Calendar
|
||||||
|
|
||||||
.col
|
.col
|
||||||
Search(past-filter recurrent-filter)
|
Search
|
||||||
|
|
||||||
#events
|
#events
|
||||||
Event(v-for='event in events' :key='event.id' :event='event')
|
Event(v-for='event in events' :key='event.id' :event='event')
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
v-spacer
|
v-spacer
|
||||||
|
|
||||||
v-tooltip(bottom) {{$t('common.add')}}
|
v-tooltip(bottom) {{$t('common.add_event')}}
|
||||||
template(v-slot:activator='{ on }')
|
template(v-slot:activator='{ on }')
|
||||||
v-btn(v-if='could_add' icon nuxt to='/add' v-on='on')
|
v-btn(v-if='could_add' icon nuxt to='/add' v-on='on')
|
||||||
v-icon mdi-calendar-plus
|
v-icon mdi-calendar-plus
|
||||||
|
|
|
@ -152,7 +152,8 @@
|
||||||
"interact_with_me": "Follow me",
|
"interact_with_me": "Follow me",
|
||||||
"remove_recurrent_confirmation": "Are you sure you want to remove this recurring event?\nPast events will be maintained, but no further events will be created.",
|
"remove_recurrent_confirmation": "Are you sure you want to remove this recurring event?\nPast events will be maintained, but no further events will be created.",
|
||||||
"import_URL": "Import from URL",
|
"import_URL": "Import from URL",
|
||||||
"import_ICS": "Import from ICS"
|
"import_ICS": "Import from ICS",
|
||||||
|
"ics": "ICS"
|
||||||
},
|
},
|
||||||
"admin": {
|
"admin": {
|
||||||
"place_description": "If you have gotten the place or address wrong, you can change it.<br/>All current and past events associated with this place will change address.",
|
"place_description": "If you have gotten the place or address wrong, you can change it.<br/>All current and past events associated with this place will change address.",
|
||||||
|
|
Loading…
Reference in a new issue