Added the 15 Day Follow up Chart

This commit is contained in:
rocketdebris 2025-12-20 23:39:50 -05:00
parent 2034842d26
commit 176d9c7e7b

View file

@ -160,6 +160,29 @@
</div> </div>
</template> </template>
</Card> </Card>
<!-- 15 Day Follow Up Widget -->
<Card >
<template #header>
<div class="widget-header">
<Calendar class="widget-icon" />
<h3>15 Day Follow Ups</h3>
</div>
</template>
<template #content>
<div class="widget-content">
<TodoChart
title="15 Day Follow Ups"
:todoNumber="fifteenDayTodoNumber"
:completedNumber="fifteenDayCompletedNumber"
>
</TodoChart>
<button class="sidebar-button"
@click="navigateTo('/calendar')">
View Follow Ups
</button>
</div>
</template>
</Card>
<!-- Late Balances Widget --> <!-- Late Balances Widget -->
<Card > <Card >
<template #header> <template #header>
@ -177,7 +200,7 @@
> >
</TodoChart> </TodoChart>
<button class="sidebar-button" <button class="sidebar-button"
@click="navigateTo('/jobs')"> @click="navigateTo('/invoices')">
Late Balances Late Balances
</button> </button>
</div> </div>