Skip to main content

A simple Django app to provide a generic view to filter a ListView

Project description

FilteredListView provides a basic class based view for django to easily filter a ListView. The provided template currently is in german and for bootstrap3.

Quick start

  1. Add “django_filteredlist” to your INSTALLED_APPS:

    INSTALLED_APPS = [
        ...
        'django_filteredlist',
    ]
  2. Create a FilteredListView:

    class MyView(FilteredListView, ListView):
        allowed_filters = ('employee_name', 'project')
        lookup_expressions = { 'project': 'projects__name__icontains' }
        verbose_names = (('employee_name', 'Name'), ('project', 'Working on'),)
  3. Add search form to your list template:

    {% extends 'base.html' %}
    
    {% block content %}
    
        {{ search }}
    
        <!-- YOUR LIST HERE -->
    
    {% endblock %}

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-filteredlist-0.1.tar.gz (4.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page