This commit is contained in:
les
2021-04-26 23:18:16 +02:00
parent 0cbd419210
commit 8519b26c05
3 changed files with 5 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
<template lang="pug">
v-card.h-event.event
v-card.h-event.event.d-flex
nuxt-link(:to='`/event/${event.slug || event.id}`')
v-img.img(:src="`/media/thumb/${event.image_path || 'logo.svg' }`")
v-icon.float-right.mr-1(v-if='event.parentId' color='success') mdi-repeat

View File

@@ -2,7 +2,7 @@
v-footer(color='secondary')
v-btn(color='primary' text href='https://gancio.org') Gancio {{settings.version}}
v-btn(v-for='link in settings.footerLinks'
:key='link.label' color='primary' text :href='link.href') {{link.label}}
:key='link.label' color='primary' text :to='link.href') {{link.label}}
v-menu(v-if='settings.enable_trusted_instances && settings.trusted_instances && settings.trusted_instances.length'
offset-y bottom open-on-hover transition="slide-y-transition")

View File

@@ -5,10 +5,10 @@
v-dialog(v-model='dialog' width='800px')
v-card
v-card-title {{$t('admin.new_announcement')}}
v-card-text
v-card-text.px-0
v-form(v-model='valid' ref='announcement' @submit.prevent='save')
v-text-field(v-model='announcement.title' :label='$t("common.title")')
Editor.mt-2(v-model='announcement.announcement'
v-text-field.col-12(v-model='announcement.title' :label='$t("common.title")')
Editor.col-12(v-model='announcement.announcement'
border no-save max-height='400px' :placeholder="$t('common.description')")
v-card-actions
v-spacer