h

Size: a a a
h
AF
🔐
h
AK
h
А
L
A
h
A
h
A
h
Z
Z
from django_filters.views import FilterView
from django.shortcuts import render
class CollectionViews(FilterView):
template_name = 'v2/filter.html'
model = DataProcessing
paginate_by = 100
filterset_class = ProductFilter
context_object_name = 'datas'
def get_queryset(self):
qs = self.model.objects.all()
return qs
Z
Z
Z
A