Hi,
I am probably missing something obvious here but I could not find anything about this in the documentation, or in this google group.
I have a model Project(Displayable, models.Model).
And the following pages structure:
Projects (Richtextpage)
-- New project (Richtextpage)
-- Detail (Richtextpage)
-- Edit (Richtextpage)
Each of these pages have their own custom views. Now I would like to have the mezzanine page projects/detail trigger on some url. For detail this would become /projects/project-id/project-slug/. For edit this would become /projects/project-id/project-slug/edit/. Normally I would use a regex in the urls but since I work with the mezzanine page I have to supply a url on the page object instead. How can this be achieved?
Thanks