Creating Band edit page

This commit is contained in:
2024-10-26 14:35:33 +02:00
parent fedb821a72
commit cdb3f02156
16 changed files with 377 additions and 41 deletions

View File

@@ -44,7 +44,7 @@ defineProps({
<v-container>
<v-row>
<v-col >
<v-col>
<slot></slot>
</v-col>
</v-row>

View File

@@ -22,6 +22,14 @@ const basketStore = useBasketStore()
</v-badge>
</div>
<v-btn
v-if="accountStore.userAccount.accountRole != null &&
accountStore.userAccount.accountRole.privilegeAdminPanel"
variant="plain"
icon="mdi-table-cog"
to="/admin"
/>
<v-btn variant="plain" icon="mdi-help" to="/help" />
<v-btn variant="plain" icon="mdi-cog" to="/preferences"/>
</template>