-
I am trying to provide CMS-like routing like:
My current solutionWhile ideally, I would prefer to check user pages first I managed to make a working example based on Leptos's examples where:
The problem with this approach is that I spend time checking first admin and then admin assets before doing actual work while adding is something that should be rarely used: It would be great if I could do it in the following order:
In Axum terms, it would look something like this:
|
Beta Was this translation helpful? Give feedback.
Answered by
Umenokin
Oct 19, 2023
Replies: 1 comment 4 replies
-
Doesnt
work? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much @davidpdrsn, @jplatte.
It seems I managed to make a solution that works well for now:
I would've wanted to move pkg under
admin
for consistency but this is purely aleptos
configuration.Thanks a lot!