views:

74

answers:

1

I am currently using the Symfony admin generator to implement a management web application.

I would like to know if there is a way to add a link on the title section of the generator.yml file.

As example:

edit:
        title: Configurations > Officials | "link to another module"
+1  A: 

YAML will accept static HTML quite easily in many tags:

edit:    
  title: <a href="/config">Configurations</a> > <a href="/config/officials">Officials</a>

Note that while some PHP is also available, it is limited compared to the full symfony stack.

Raise