Show linked groups on club role form page

This commit is contained in:
imperosol
2026-09-03 19:16:34 +02:00
parent ab8a9cab25
commit c07547d1b4
2 changed files with 21 additions and 0 deletions
+14
View File
@@ -49,6 +49,20 @@
{{ subform.is_active.help_text }}
</span>
</div>
{% set groups = subform.instance.linked_groups.all()|list %}
{% if groups %}
<div>
<p>
<strong>{% trans %}Linked groups : {% endtrans %}</strong>
{{ groups|map(attribute="name")|join(", ") }}
</p>
<p class="helptext">
{% trans trimmed %}
Users receiving this role will also be assigned to those groups
{% endtrans %}
</p>
</div>
{% endif %}
</div>
</details>
</div>