We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://metacpan.org/pod/Template::Flute#uri
The uri rewrite magic happens before tokens are applied.
With this spec:
<value name="create-button" field="request.path" target="href" op="prepend"/>
and this html:
<a class="btn btn-primary create-button" href="/create">Create <span class="class">Thing</span></a>
With an app mounted on /base and request->path being /admin/foo I would expect the following href:
/base
request->path
/admin/foo
/base/admin/foo/create
but we get:
/admin/foo/base/create
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://metacpan.org/pod/Template::Flute#uri
The uri rewrite magic happens before tokens are applied.
With this spec:
and this html:
With an app mounted on
/base
andrequest->path
being/admin/foo
I would expect the following href:but we get:
The text was updated successfully, but these errors were encountered: