Hello!
I have the following routes:

routes_in = (
    ('/$c/$f', '/welcome/$c/$f'),
)

routes_out = (
    ('/welcome/$c/$f', '/$c/$f'),
)

but when I have a function that needs some arguments, the URL link
with the 'welcome' application.
What should I do?

Reply via email to