My urls.py looks like this:

project_info = {
    "queryset" : project.objects.all(),
}

(r'^project/(?P<slug>[-\w]+)/',
login_required(list_detail.object_detail), dict(project_info,
slug_field='slug')),

Projects have a one to many relationship with tasks. The objective of
my using object_detail is to show which tasks are applicable to the
specificied project (slug).

I am having difficulty understanding how the SQL Join can take place.
The above appears to only get the project details from the project
model, but not query the tasks also to see which apply. I need some
form of filter I guess but can't find the right info I need from the
Django docs.

Any help would be much appreciated.

Thanks
--~--~---------~--~----~------------~-------~--~----~
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