How can I have multiple navigation paths with Django, like a simplifies wizard path and a full path?
Posted
by Zeta
on Stack Overflow
See other posts from Stack Overflow
or by Zeta
Published on 2010-06-15T16:38:54Z
Indexed on
2010/06/15
16:42 UTC
Read the original article
Hit count: 195
Lets say I have an application with a structure such as:
System
set date
set name
set something
Other
set death ray target
calibrate
and I want to have "back" and "next" buttons on a page. The catch is, if you're going in via the "wizard", I want the nav path to be something like "set name" -> "set death ray target" -> "set name". If you go via the Advanced options menu, I want to just iterate options... "set date" -> "set name" -> "set something" -> "set death ray target" -> calibrate.
So far, I'm thinking I have to use different URIs, but that's that. Any ideia how this could be done?
Thanks.
© Stack Overflow or respective owner