我有以下模板代码。
<div class="row">
{% include 'ProductBundle:Partials:productInfo.html.twig' %}
{% include 'OrderBundle:Partials:orderInfo.html.twig' %}
{% include 'DeliveryBundle:Partials:deliveryInfo.html.twig' %}
{% include 'BillBundle:Partials:billInfo.html.twig' %}
</div>
我想展示ROLE_USER
. 他无法访问其他三个包括。其他用户ROLE_ADMIN
可以访问所有四个包括部分。
有没有办法用 twig 做到这一点?