diff options
Diffstat (limited to '')
-rw-r--r-- | app/views/consts.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/views/consts.py b/app/views/consts.py index 27386e1..31cf565 100644 --- a/app/views/consts.py +++ b/app/views/consts.py @@ -81,13 +81,18 @@ def list (): current = [] old = [] future = [] + last_month = [] for e in expenses: if e.start <= d: if e.end >= d: current.append(e) else: - old.append(e) + if (d.month == 1 and e.month == 12 and e.year == d.year - 1) \ + or (e.year == d.year and e.month == d.month - 1): + last_month.append(e) + else: + old.append(e) else: future.append(e) |