13 lines
307 B
Python
Executable File
13 lines
307 B
Python
Executable File
import django_filters
|
|
|
|
from .models import Rapid
|
|
|
|
|
|
class RapidFilter(django_filters.FilterSet):
|
|
class Meta:
|
|
model = Rapid
|
|
fields = ("normal", "abnormality", "region", "examination",
|
|
"laterality",
|
|
#"site",
|
|
"created_date", "author")
|