diff --git a/components/Event.vue b/components/Event.vue
index f4dc7230..f320457d 100644
--- a/components/Event.vue
+++ b/components/Event.vue
@@ -1,7 +1,6 @@
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
.title.p-name {{event.title}}
@@ -32,7 +31,16 @@
v-icon mdi-calendar-export
v-list-item-content
v-list-item-title {{$t('common.add_to_calendar')}}
-
+ v-list-item(v-if='is_mine' :to='`/add/${event.id}`')
+ v-list-item-icon
+ v-icon mdi-pencil
+ v-list-item-content
+ v-list-item-title {{$t('common.edit')}}
+ v-list-item(v-if='is_mine' @click='remove(false)')
+ v-list-item-icon
+ v-icon(color='error') mdi-delete-forever
+ v-list-item-content
+ v-list-item-title {{$t('common.remove')}}