I have a Manytomanyfield in a model called "registrants" on a fieldname called locations. It stores the person's facility values in a table in the database in something called like registrants_locations_values (just as an example).
How can i do a query on the registrants_locations_values table since it's not a model? I'm trying something like this: tms = registrants_locations_values.objects.filter(id=user.id) but that is not working... how can i pull data from this Manytomany table? -- 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.

