Fix date ranges

This commit is contained in:
Paweł Jastrzębski 2021-05-05 14:54:33 +02:00
parent e9536f1816
commit 8b167b2c74

View File

@ -32,12 +32,12 @@ class DateRangeMixin:
}, },
{ {
'name': 'Last 30 days', 'name': 'Last 30 days',
'start': now - timezone.timedelta(days=30), 'start': now - timezone.timedelta(days=29),
'end': now, 'end': now,
}, },
{ {
'name': 'Last 90 days', 'name': 'Last 90 days',
'start': now - timezone.timedelta(days=90), 'start': now - timezone.timedelta(days=89),
'end': now, 'end': now,
}, },
{ {