How to add more than one parameter in Twig path? Say you have this route :
article_show: pattern: /article/{slug} defaults: { _controller: AcmeArtic
You can pass as many arguments as you want, separating them by commas:
{{ path('_files_manage', {project: project.id, user: user.id}) }}