{% extends "superadmin/base_superadmin.html" %} {% block title %}Groups Management{% endblock %} {% block content %}

Groups Management

Add New Group

All Groups ({{ groups|length }})

Group Name

Members

Currency

Status

Actions

{% for group in groups %}

{{ group.name }}

{% if group.description %}

{{ group.description[:50] }}...

{% endif %}

{{ group.members|length }}

{{ group.currency_ref.symbol if group.currency_ref else 'N/A' }}

{% if group.is_active %} Active {% else %} Inactive {% endif %}
{% endfor %} {% if not groups %}

No groups found. Create your first group to get started.

{% endif %}
{% endblock %}