SMMP/build/viewer/view/user/user_groups.twig

34 lines
961 B
Twig

<input type='text' class='searchbar' placeholder='Recherche'>
{% for cluster in f_clusters() %}
<article class='inline-box' id='{{ cluster.id_cluster }}'>
<span class='title' style='color: {{ p_theme }}'>{{ cluster.name }}</span>
<span class='link_remove' data-cluster='{{ cluster.id_cluster }}'>{{ p_icon.remove | raw }}</span>
<span class='link_edit' data-cluster='{{ cluster.id_cluster }}'>{{ p_icon.edit | raw }}</span>
<span class='code'>
{{ p_icon.type | raw }}
<span>{{ f_users(cluster.id_cluster) | length }} utilisateurs</span>
</span>
<span class='groups'>
{{ p_icon.group | raw }}
{% for user in f_users(cluster.id_cluster) %}
<span>
{{ user.username }}
<span class='rem-member' data-member='{{ user.id_user }}' data-cluster='{{ cluster.id_cluster }}'></span>
</span>
{% endfor %}
<span class='add-member' data-cluster='{{ cluster.id_cluster }}'>+</span>
</span>
</article>
{% endfor %}