使记录标题成为列表视图中另一个模块的链接

发布于 2024-09-10 03:29:50 字数 204 浏览 8 评论 0原文

我目前正在使用 Symfony 管理生成器来实现管理 Web 应用程序。

我想知道是否有办法在generator.yml 文件的标题部分添加链接。

例如:

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

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"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七色彩虹 2024-09-17 03:29:50

YAML 在许多标签中很容易接受静态 HTML:

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

请注意,虽然某些 PHP 也可用,但与完整的 symfony 堆栈相比,它是有限的。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文