9 lines
473 B
Twig
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> |