{% load i18n %} {% load markdown %} {% load interaction %}
{% for group in groups %}

{{ group.name }} {% include 'snippets/privacy-icons.html' with item=group %}

{% if group.user == user %}
{% trans "Manager" as text %} {{ text }}
{% endif %}
{% if group.description %} {{ group.description|to_markdown|safe|truncatechars_html:30 }} {% else %}   {% endif %}
{% endfor %}