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 details)

Uploaded Source

File details

Details for the file django-filteredlist-0.1.tar.gz.

File metadata

File hashes

Hashes for django-filteredlist-0.1.tar.gz
Algorithm Hash digest
SHA256 8ed2cce980b1deb933c62e3b8a5c120855e2c224bde2e87662342816a6a503f6
MD5 db3ad41e26d6582759b88f46c058bcde
BLAKE2b-256 7dc57140a7d6215e9a8b977d719906a00d2633144881fecc044b038638596a34

See more details on using hashes here.

Supported by

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