Files
sprinkle-uf-tweaks/templates/tables/columns/users-via_roles.html.twig
2023-06-06 14:42:49 +01:00

9 lines
473 B
Twig

<script id="{{table.id}}-column-viaRoles" type="text/x-handlebars-template">
{% verbatim %}
<td>
{{#each row.roles_via }}
<a href="{% endverbatim %}{# Handlebars can't access variables in the global scope, so we have to use Twig to insert the base url #}{{site.uri.public}}{% verbatim %}/roles/r/{{this.slug}}" class="label label-primary" title="{{this.description}}">{{this.name}}</a>
{{/each}}
</td>
{% endverbatim %}
</script>