53 lines
1.0 KiB
Vue
53 lines
1.0 KiB
Vue
<script setup>
|
|
|
|
import DisplayPresentProfiles from "~/components/noAutoLoad/displayPresentProfiles.vue";
|
|
|
|
definePageMeta({
|
|
layout: 'mobile'
|
|
})
|
|
|
|
const profileStore = useProfileStore()
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<UDashboardPanelContent>
|
|
<UPageGrid>
|
|
<UDashboardCard>
|
|
<display-welcome/>
|
|
</UDashboardCard>
|
|
<UDashboardCard
|
|
title="Aufgaben"
|
|
>
|
|
<display-open-tasks/>
|
|
</UDashboardCard>
|
|
<UDashboardCard
|
|
title="Anwesenheit"
|
|
>
|
|
<display-running-working-time/>
|
|
</UDashboardCard>
|
|
<UDashboardCard
|
|
title="Zeit"
|
|
>
|
|
<display-running-time/>
|
|
</UDashboardCard>
|
|
<UDashboardCard
|
|
title="Buchhaltung"
|
|
v-if="profileStore.ownTenant.features.accounting"
|
|
>
|
|
<display-open-balances/>
|
|
</UDashboardCard>
|
|
<UDashboardCard
|
|
title="Projekte"
|
|
>
|
|
<display-projects-in-phases/>
|
|
</UDashboardCard>
|
|
|
|
</UPageGrid>
|
|
</UDashboardPanelContent>
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |