diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-11-19 20:45:18 -0600 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-11-19 20:45:18 -0600 |
commit | 3b2fd5d0d684cd78ece02dc4a9583b92ed431850 (patch) | |
tree | 7947f2702b24ffbed2cd603d2910939a2ebee12e /src/templates/expected.html | |
parent | a227e15d79f545ad84c3113dddeedcd87ff955a1 (diff) |
Update expected pages to include in/out/net
Diffstat (limited to 'src/templates/expected.html')
-rw-r--r-- | src/templates/expected.html | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/src/templates/expected.html b/src/templates/expected.html index 78d6482..1a05266 100644 --- a/src/templates/expected.html +++ b/src/templates/expected.html @@ -34,16 +34,28 @@ </table> <table> <tr> + <th>Period</th> + <th>In</th> + <th>Out</th> + <th>Net</th> + </tr> + <tr> <td>Weekly:</td> - <td>{{week}}</td> + <td>{{week.in}}</td> + <td>{{week.out}}</td> + <td>{{week.net}}</td> </tr> <tr> <td>Monthly:</td> - <td>{{month}}</td> + <td>{{month.in}}</td> + <td>{{month.out}}</td> + <td>{{month.net}}</td> </tr> <tr> <td>Yearly:</td> - <td>{{year}}</td> + <td>{{year.in}}</td> + <td>{{year.out}}</td> + <td>{{year.net}}</td> </tr> </table> </div> |