mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-14 20:06:35 +03:00
6 lines
146 B
Python
6 lines
146 B
Python
from django_filters import rest_framework as filters
|
|
|
|
|
|
class DateFilter(filters.FilterSet):
|
|
date = filters.DateRangeFilter(field_name="date")
|