diff options
Diffstat (limited to 'src/templates')
-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> |