Created
May 3, 2018 12:58
-
-
Save mazlum/35d8a29b2a77e4bba9ba251505cb2a63 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# views.py | |
def product_list(request): | |
f = ProductFilter(request.GET, queryset=Product.objects.all()) | |
return render(request, 'my_app/template.html', {'filter': f}) | |
# urls.py | |
from django.conf.urls import url | |
from django_filters.views import FilterView | |
from myapp.models import Product | |
urlpatterns = [ | |
url(r'^list/$', FilterView.as_view(model=Product)), | |
] | |
#views.py | |
from django_filters.views import FilterView | |
class ProductListView(FilterView): | |
model = Product | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment