Routing between forms without knowing the template #439
Unanswered
danbolinson-bt
asked this question in
Q&A
Replies: 1 comment
-
That starts to get into the realm of relative urls which isn't implemented in hash routing. I have some future plans for this sort of thing. But not necessarily, for hash routing. A current pattern might be def get_base():
pattern = routing.get_url_pattern()
parts = pattern.split("/")
if not parts:
return ""
return parts[0] The idea for |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm still getting my head around
routing
so bear with me...I have multiple templates and multiple routings:
Is there a better way? I'd love to be able to do something like:
As I said, still getting my head around this so I might be missing some core concepts or available mechanisms. Thanks!
Beta Was this translation helpful? Give feedback.
All reactions