On Wednesday 14 June 2006 12:20, Viktor wrote:
> I have two applications in my project:
>
...

> But when in my views I try to do:
>
> c1 = Cls1.objects.get(pk=1)
> clss = c1.cls2_set.all()
>
> I get:
>
> 'Cls1' object has no attribute 'cls2_set'

This is because your models are in different apps.  I can't remember 
off-hand what the correct syntax is (it might be something like 
cl.app2_cls2_set.all()), but the easiest way is to do this:

class Cls2(models.Model):
    c = models.ForeignKey(Cls1, related_name='cls2_set')

Luke

-- 
"Adversity: That which does not kill me only postpones the inevitable." 
(despair.com)

Luke Plant || L.Plant.98 (at) cantab.net || http://lukeplant.me.uk/

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

Reply via email to