v-container.container.pa-0.pa-md-3
v-card
v-alert(v-if='url!==settings.baseurl' outlined type='warning' show-icon :icon='mdiAlert')
span(v-html="$t('admin.wrong_domain_warning', { url, baseurl: settings.baseurl })")
v-tabs(v-model='selectedTab' show-arrows :next-icon='mdiChevronRight' :prev-icon='mdiChevronLeft')
//- SETTINGS
v-tab(href='#settings') {{$t('common.settings')}}
v-tab-item(value='settings')
Settings
//- THEME
v-tab(href='#theme') {{$t('common.theme')}}
v-tab-item(value='theme')
Theme
//- USERS
v-tab(href='#users')
v-badge(:value='!!unconfirmedUsers.length' :content='unconfirmedUsers.length') {{$t('common.users')}}
v-tab-item(value='users')
Users(:users='users' @update='updateUsers')
//- PLACES
v-tab(href='#places') {{$t('common.places')}}
v-tab-item(value='places')
Places
//- TAGS
v-tab(href='#tags') {{$t('common.tags')}}
v-tab-item(value='tags')
Tags
//- GEOCODING / MAPS
v-tab(href='#geolocation' v-if='settings.allow_geolocation') {{$t('admin.geolocation')}}
v-tab-item(value='geolocation')
client-only(placeholder='Loading...')
Geolocation
//- Collections
v-tab(href='#collections') {{$t('common.collections')}}
v-tab-item(value='collections')
Collections
//- EVENTS
v-tab(href='#unconfirmed_events')
v-badge(:value='!!unconfirmedEvents.length' :content='unconfirmedEvents.length') {{$t('common.events')}}
v-tab-item(value='unconfirmed_events')
Events(:unconfirmedEvents='unconfirmedEvents'
@confirmed='id => { unconfirmedEvents = unconfirmedEvents.filter(e => e.id !== id)}')
//- ANNOUNCEMENTS
v-tab(href='#announcements') {{$t('common.announcements')}}
v-tab-item(value='announcements')
Announcement
//- PLUGINS
v-tab(href='#plugins') {{$t('common.plugins')}}
v-tab-item(value='plugins')
Plugin
//- FEDERATION
v-tab(href='#federation') {{$t('common.federation')}}
v-tab-item(value='federation')
Federation
//- MODERATION
v-tab(v-if='settings.enable_federation' href='#moderation') {{$t('common.moderation')}}
v-tab-item(value='moderation')
Moderation