You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

user.html.twig 382B

1234567
  1. {% if item is defined and item.user is defined and item.user is not null %}
  2. <a href="{{ path('easyadmin', {"entity": 'User', 'action': "show", "id" : item.user.id})}}">{{ value }}</a>
  3. {% elseif user is defined and user is not null %}
  4. <a href="{{ path('easyadmin', {"entity": 'User', 'action': "show", "id" : user.id})}}">{{ user }}</a>
  5. {% else %}
  6. {{ value }}
  7. {% endif %}