11 lines
193 B
Python
Executable File
11 lines
193 B
Python
Executable File
import django_filters
|
|
|
|
from .models import Long
|
|
|
|
|
|
class LongFilter(django_filters.FilterSet):
|
|
class Meta:
|
|
model = Long
|
|
fields = (#"site",
|
|
"created_date", "author")
|