{% extends "superadmin/base_superadmin.html" %} {% block page_title %}Groups Management{% endblock %} {% block page_description %}Manage organizations and groups{% endblock %} {% block superadmin_content %}

Groups Management

Create and manage organizations with complete control

Total Groups

{{ groups|length }}

Total Members

{{ total_members }}

Active Groups

{{ groups|selectattr('is_active')|list|length }}

Total Contributions

৳{{ "%.0f"|format(total_contributions) }}

All Groups

Manage your organizations and their settings

{% if groups %}
{% for group in groups %} {% endfor %}
Group Name Group Code Members Currency Status Actions
{{ group.name }}
{% if group.description %}
{{ group.description[:50] }}{% if group.description|length > 50 %}...{% endif %}
{% else %}
No description
{% endif %}
{{ group.group_code }}
{{ group.members|length }} members
{{ group.currency_ref.code if group.currency_ref else 'BDT' }} {% if group.is_active %} Active {% else %} Inactive {% endif %}
View
{% else %}

No groups found

Get started by creating your first organization. You can manage members, contributions, and more.

{% endif %}
{% endblock %}