Hi all. We're using a dev version somewhere post .96 and pre 1.0. I have an admin model as setup here:
class Admin: list_display = ('FirstName','LastName','Organization','BZipCode','Phone','Active','CreatedDate',) list_filter = ['CreatedDate'] fields = ( ('Contact Information', { 'fields': ('Title','Organization','FirstName','LastName','Phone','Fax',) }), ('Billing Address', { 'fields': ('BAddress','BAddress2','BCity','BState','BZipCode','BCountry',) }), ('Shipping Address', { 'fields': ('SAddress','SAddress2','SCity','SState','SZipCode','SCountry',) }), ('Communication Preferences', { 'fields': ('RefreshRate','OutBidNotifications','BidNotifications','LostNotifications','EmailFormat',) }), ('Admin Information:', { 'fields': ('AccountNum','AuthCode','CreatedDate','ModifiedDate','Active') }), ) search_fields = ['AccountNum','Organization','FirstName','LastName','BZipCode','Phone'] When I try to search on anything at all, the screen just blinks and returns all of the records. This same syntax works perfectly on another model. There's no error but the search function in the /admin is not working. Any ideas what it could be? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---