HI all,

New to Django, but I still did some triage to try finding out what was
going on and better understand the framework.  I set a breakpoint
within django.contrib.admin.views.main.py and found I was getting an
"IncorrectLookupParameters" exception when I entered in a text query
string.  I am using the dev branch as of rev 6410.  The closest ticket
I could find was Ticket #5542 where a similar problem is described
when searching ForeignKey fields, but mine is a standard CharField
within the queried model.

The search string is something like "http://127.0.0.1/admin/test/
entity/?q=house".  I end up getting a 302 error and redirected back to
the admin entity list page.

Looking through the admins view main.py, i can see the query string is
being retrieved from the request, but the query_set which is used to
actualy generate the db request doesn't seem to have any knowledge of
this query string.  I would also think the query_set if unadulterated
wouldn't cause this exception.

I don't mind debugging further, but as being new (less then 3 days) I
could use some pointers on where to look.  Any help would be much
appreciated especially since my entity list already has over 4000
records in it and paging through to find something specific is a real
pain.

Yishai


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django developers" group.
To post to this group, send email to django-developers@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to