I'm building a site where pages can have parent pages in the form:

* Grandparent 1
* Grandparent 2
** Parent 1
*** Child 1
*** Child 2
** Parent 2

I'd like the url to contain each parent. For example, 'child 2' would be at
/grandparent-2/parent-1/child-2/

I'm not sure how to implement this in my urls.py without hardcoding the
parent slugs. Any ideas?

Here is what my get_absolute_url looks like for each page:

    def get_absolute_url(self):
        url = "/%s/" % self.slug
        page = self
        while page.parent:
            url = "/%s%s" % (page.parent.slug,url)
            page = page.parent
        return url

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