Andres Luga wrote:
> I've set up MySQL to log all queries to the database. In Django I'm
> using generic views. I have the following models/tables:
> 1. Firm
> 2. Person ( ForeignKey( Firm ))

I suppose you are using a generic view from 'create_update' package that 
deals with forms for object? Those generic views construct a manipulator 
for presenting a form and in this manipulators ForeignKeys are rendered 
as <select>s by default. And these queries you see select data to fill 
those <select>s.

To fight the problem you can add 'editable=False' to your ForeignKeys 
definitions so manipulators won't touch them.

Another way is to use parameter 'raw_id_admin=True' in ForeignKeys. This 
way they will be visible in forms not as <select>s but as simple <input 
type="text"> taking IDs of referenced records.

--~--~---------~--~----~------------~-------~--~----~
 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to