10 lines
183 B
Python
Executable File
10 lines
183 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")
|