Skip to content

Instantly share code, notes, and snippets.

@mazlum
Created May 3, 2018 12:58
Show Gist options
  • Save mazlum/35d8a29b2a77e4bba9ba251505cb2a63 to your computer and use it in GitHub Desktop.
Save mazlum/35d8a29b2a77e4bba9ba251505cb2a63 to your computer and use it in GitHub Desktop.
# 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