Skip to main content

Django app that adds a filter with any functionality you need.

Project description

django-admin-anylogicfilter

Django app that adds a filter with any functionality you need.

Requirements

App tested with

  • Python 3.11
  • Django 4

Installation

pip install anylogicfilter

Quick start

  1. Add anylogicfilter to INSTALLED_APPS:
INSTALLED_APPS = [
    ...
    'anylogicfilter',
    ...
]
  1. Declare your filter class by inheriting from AnyLogicFilter class:
class MyFilter(AnyLogicFilter):
    form_fields = [
        ('field_name', forms.CharField(max_length=100, required=True, initial='')),
        ('other_field_name', forms.BooleanField(label='Not default by-name label', required=False, initial='')),
    ]

    def queryset(self, request, queryset):
        if self.form.is_valid():
            filter_params = {
                p: self.form.cleaned_data.get(p)
                for p in self.expected_parameters()
                if self.form.cleaned_data.get(p) is not None
            }
            # some query, using subquery with 2+ parameters or anything else you need
            return queryset.filter(...filter_params['field_name']...filter_params['other_field_name']...)
        else:
            return queryset
  1. Add it to admin.py:
@admin.register(YourModel)
class YourModelAdmin(admin.ModelAdmin):
    list_filter = [
        ...
        ('name_of_any_field_from_or_related_to_your_model', MyFilter),
        ...
    ]
  1. Enjoy!

Contributing

Bug reports and/or pull requests are welcome :)

License

MIT License

Project details


Download files

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

Source Distribution

django-admin-anylogicfilter-0.0.1.tar.gz (3.8 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