Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7636293
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T07:38:20+00:00 2026-05-31T07:38:20+00:00

Anyway to use Django’s nice list_filter feature in other views?

  • 0

Anyway to use Django’s nice “list_filter” feature in other views?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T07:38:21+00:00Added an answer on May 31, 2026 at 7:38 am

    An interresting external app that allows you to configure filters is django-filter. Actually it is way more powerful than django admin list_filter.

    Django-filter is a reusable Django application for allowing users to
    filter queryset dynamically. It requires Python 2.4 or higher. For
    usage and installation instructions consult the docs directory.

    Django-filter can be used for generating interfaces similar to the
    Django admin’s list_filter interface. It has an API very similar
    to Django’s ModelForms. For example if you had a Product model
    you could have a filterset for it with the code:

    import django_filters
    
    class ProductFilterSet(django_filters.FilterSet):
        class Meta:
            model = Product
            fields = ['name', 'price', 'manufacturer']
    

    And then in your view you could do:

    def product_list(request):
        filterset = ProductFilterSet(request.GET or None)
        return render_to_response('product/product_list.html',
            {'filterset': filterset})
    

    See the docs directory for more information.

    There is a really nice API behind the scenes so it’s really lots of fun.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there anyway to use a bounded wildcard require a class implement more than
Is there anyway to use the Open Office SDK 2.0 to save a PowerPoint
Is there anyway to use atrm command to remove queue job from PHP web
Is there anyway to use LINQ to obtain the maximum of each columns for
I was wondering if there was anyway to use functions like ReadFileEx that require
Since, guid values will always be unique anyway why use a unique index. Isnt
Is there anyway I can use to destroy my deployed application at specific date?.
Is there anyway to make it possible to use .net 3.0 namespaces in a
What use are they if they cannot be altered from their default values anyway?
I have a couple special use cases for Django admin, and I'm curious about

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.