-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<template name="home">
<div class="summary">
<h1><a href="{{pathFor 'trends'}}">Trends</a></h1>
<h4>This Month</h4>
<table>
<tr>
<td>Spent</td>
<td>${{totalSpent}}</td>
</tr>
<tr>
<td>Items</td>
<td>{{numItems}}</td>
</tr>
<tr>
<td>Waste</td>
<td>{{numWaste}}</td>
</tr>
</table>
</div>
<div class="summary">
<h1><a href="{{pathFor 'inventory'}}">Inventory</a></h1>
<table>
<tr>
<td>Expired</td>
<td>{{expired}}</td>
</tr>
<tr>
<td>Almost Expired</td>
<td>{{almostExpired}}</td>
</tr>
<tr>
<td>Good</td>
<td>{{good}}</td>
</tr>
<tr>
<td>Total</td>
<td>{{total}}</td>
</tr>
</table>
</div>
</template>