On Aug 18, 10:48 pm, onoxo <vedran.ko...@gmail.com> wrote:
> this is my model.py:
>
> class Event(models.Model):
>     title = models.CharField('Event Name', max_length=300)
>     photo_set = models.ForeignKey(PhotoSet, blank=True, null=True)
>
> class PhotoSet(models.Model):
>     title = models.CharField(max_length=300)
>     slug = models.CharField(max_length=300)
>
> and this is my views.py
>
> def getProgrammAsXML(request):
>     entries = Event.objects.filter(start_time__year=2009)
>     for item in entries:
>         print item.title
>         print item.photo_set
>         # this one gets the error:
>         print item.photo_set.title
>
> i'm getting this error when i try to access item.photo_set.title.
> 'NoneType' object has no attribute 'title'
>
> when i try item.photo_set, then i get the name of that object so i
> think that reference to object is ok...
> what am i doing wrong here? or do i have to do that some other way?
>
> tnx,
> vedran

You will need to provide more information, such as the actual
traceback. I don't believe that the 'print item.photo_set' line can be
working if in the very next line you're getting an error which in
effect says that item.photo_set is None.

As an aside, I must say that you are very likely to get extremely
confused with your models and fields named the way they are. 'xxx_set'
is usually used in Django for the automatically-created reverse
relation on ForeignKeys - so in this case, the reverse relation from
PhotoSet to Event would be called event_set - and this is always a
queryset. Calling your actual FK 'photo_set' is bound to lead to
confusion.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to