I have two objects with one being a fk to the other (there are other
fields in my example, but this seems the relevant parts)...

class x(models.Model):
    name=models.CharField()

class y(models.Model):
    name=models.CharField()
    x=models.ForeignKey(x)

I'm currently using the object_detail generic view to display "x"
objects.  I would like to also display a list of related "y" objects.
I know I can do this via y_set.all no problem with that.  My question
is - is it possible to use the object_detail generic view and get
pagination for the related y objects?  Or, do I need to write a custom
view for this?  I'm using the pagination feature of the object_list
generic view when displaying the list of all "x" objects and I'd like
to continue the look and feel to the page where I show a given "x"
object list all "y" objects related to it.

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