mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-08-19 04:06:23 +02:00
for last_followup remove filter stub, fix localization, improve serializer
This commit is contained in:
@@ -1061,14 +1061,6 @@ def ticket_list(request):
|
||||
if date_to:
|
||||
query_params['filtering']['created__lte'] = date_to
|
||||
|
||||
followup_from = request.GET.get('followup_from')
|
||||
if followup_from:
|
||||
query_params['filtering']['followup__gte'] = followup_from
|
||||
|
||||
followup_to = request.GET.get('followup_to')
|
||||
if followup_to:
|
||||
query_params['filtering']['followup__lte'] = followup_to
|
||||
|
||||
# KEYWORD SEARCHING
|
||||
q = request.GET.get('q', '')
|
||||
context['query'] = q
|
||||
|
Reference in New Issue
Block a user