membershipfee_filter.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.contrib.admin import SimpleListFilter
  4. import datetime
  5. class MembershipFeeFilter(SimpleListFilter):
  6. # Human-readable title which will be displayed in the
  7. # right admin sidebar just above the filter options.
  8. title = 'Cotisations'
  9. # Parameter for the filter that will be used in the URL query.
  10. parameter_name = 'fee'
  11. def lookups(self, request, model_admin):
  12. """
  13. Returns a list of tuples. The first element in each
  14. tuple is the coded value for the option that will
  15. appear in the URL query. The second element is the
  16. human-readable name for the option that will appear
  17. in the right sidebar.
  18. """
  19. return (
  20. ('paidup', 'À jour de cotisation'),
  21. ('late', 'En retard'),
  22. )
  23. def queryset(self, request, queryset):
  24. """
  25. Returns the filtered queryset based on the value
  26. provided in the query string and retrievable via
  27. `self.value()`.
  28. """
  29. if self.value() == 'paidup':
  30. return queryset.filter(
  31. membership_fees__start_date__lte=datetime.date.today,
  32. membership_fees__end_date__gte=datetime.date.today)
  33. if self.value() == 'late':
  34. return queryset.filter(status='member').exclude(
  35. membership_fees__start_date__lte=datetime.date.today,
  36. membership_fees__end_date__gte=datetime.date.today)