getting route name not the route path in twig symfony

walidtlili picture walidtlili · Jan 31, 2017 · Viewed 26.5k times · Source

i'm developing an application with symfony3.
I want to get route name in twig. i did this :

 {% set current_path = path(app.request.get('_route')) %}
 {{ current_path }}

it displays the url of the current page. But i want to get route name not the path. example :

personnel_index:
    path:     /liste
    defaults: { _controller: "PersonnelBundle:Personnel:index" }
    methods:  GET

must return : personnel_index

so how can i get the route name

Answer

Constantin picture Constantin · Jan 31, 2017

This is because you put the path function try like this

{% set current_path = app.request.get('_route') %}
{{ current_path }}