Hi again!
I'm finally working on some custom routes and I ran into the following "problem":
If I masquerade the routable template (same approach as in the documentations, with page_views, edit_views etc etc) it won't recognize the edit, create and delete view, since with the masquerade option enabled a slash gets automatically added at the end of the url. Of course I can define the route accordingly:
and everything works fine, but it simply doesn't "look good" if you know what I mean
. Any thoughts on this or should I simply add the slash in the routes and leave it be?
I'm finally working on some custom routes and I ran into the following "problem":
If I masquerade the routable template (same approach as in the documentations, with page_views, edit_views etc etc) it won't recognize the edit, create and delete view, since with the masquerade option enabled a slash gets automatically added at the end of the url. Of course I can define the route accordingly:
- Code: Select all
<cms:route name='create_view' path='create/' filters='authenticated' />
and everything works fine, but it simply doesn't "look good" if you know what I mean
