We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e8e1d6 commit 79197e4Copy full SHA for 79197e4
src/bundle/Resources/views/themes/admin/user/role_assignment/list.html.twig
@@ -20,8 +20,18 @@
20
raw: true,
21
}]) %}
22
23
+ {% set content %}
24
+ {% set assignment_link_content = role_assignment.usergroup is defined ? role_assignment.usergroup : role_assignment.user %}
25
+ <a href="{{ ibexa_url(assignment_link_content) }}">
26
+ {{ ibexa_content_name(assignment_link_content)|escape('html') }}
27
+ </a>
28
+ {% endset %}
29
+
30
{% set body_row_cols = body_row_cols|merge([
- { content: role_assignment.usergroup is defined ? ibexa_content_name(role_assignment.usergroup) : ibexa_content_name(role_assignment.user) },
31
+ {
32
+ content: content,
33
+ raw: true,
34
+ },
35
]) %}
36
37
{% set col_raw %}
0 commit comments