On 30 Gru 2009, 20:29, TeenSpirit83 <[email protected]> wrote: > Hi, > I have a yyyy callable in the modeladmin for an object XX. > Now I want to add a tool button (or something clickable) for filtering > the changelist displaying only the object having yyyy value less than > 30. > How would you implement somthing like this? > Thanks a lot!
You could use default Django admin filtering but it's limited to what database can do and doesn't support custom filters. But it seems that there is some undocumented (?) possibility: http://stackoverflow.com/questions/991926/custom-filter-in-django-admin -- Tomasz Zielinski http://pyconsultant.eu -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

