8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-07-04 05:04:06 +00:00

Fix date filter in event logs

This commit is contained in:
Jean-Romain Garnier 2020-04-24 16:43:11 +02:00 committed by chirac
parent ba7e0080aa
commit 8cfc5d66ee

View file

@ -38,6 +38,7 @@ from topologie.models import Port
from .forms import classes_for_action_type from .forms import classes_for_action_type
class ActionsSearch: class ActionsSearch:
def get(self, params): def get(self, params):
""" """
@ -55,10 +56,10 @@ class ActionsSearch:
query &= Q(user=user) query &= Q(user=user)
if start: if start:
query &= Q(date_created__geq=start) query &= Q(date_created__gte=start)
if end: if end:
query &= Q(date_created__leq=end) query &= Q(date_created__lte=end)
action_models = self.models_for_action_types(action_types) action_models = self.models_for_action_types(action_types)
if action_models: if action_models: