{% extends "layout/base.html" %} {% block title %}FFGA - Trusted Community{% endblock %} {% block content %}

Trusted Community

Our trusted community consists of verified and reliable organizations that meet our strict federation requirements. These members form the backbone of the FAME federation and contribute to the ecosystem by providing valuable data assets and services.

Being part of our trusted community means an organization has successfully passed our verification process, has been voted in by existing members, and adheres to the federation's ethical standards and compliance requirements.

Current Federation Members

{% if federated_organizations %}

Total Federated Organizations

{{ federated_organizations|length }}

{% endif %} {% if federated_organizations %}
{% for org in federated_organizations %}
{% if org.logo %} {{ org.legal_name }} logo {% else %}
{% endif %}

{{ org.legal_name }}

Type: {% if org.org_type == 'FPO' %} For-Profit Organization {% elif org.org_type == 'NPO' %} Non-Profit Organization {% elif org.org_type == 'RES' %} Research Institution {% elif org.org_type == 'EDU' %} Educational Institution {% elif org.org_type == 'LEO' %} Law Enforcement Organization {% elif org.org_type == 'PUB' %} Public Administration {% elif org.org_type == 'EUP' %} European Project {% else %} Other {% endif %}
Country: {% if org.legal_address and org.legal_address.country %} {{ org.legal_address.country }} {% else %} N/A {% endif %}
Joined: {{ org.onboarded_at.strftime('%B %d, %Y') if org.onboarded_at else 'N/A' }}
{% if org.website_url %} {% endif %}
{% endfor %}
{% else %}

There are currently no federated organizations to display, or you may need to log in to view this information.

Interested in joining our community? Apply for federation today.

{% endif %}
{% endblock %}