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

Control Panel

My Profile

Full Name

{{ user.first_name }} {{ user.last_name }}

Email

{{ user.email }}

{% if organization.org_type != 'EUP' %}

Company Address

{{ postal_address.address_line1 }}, {{ postal_address.city }} {{ postal_address.post_code }}

Country

{{ postal_address.country }}

{% else %}

Grant Agreement (GA)

{{ organization.tin }}

Coordinating Country

{{ postal_address.country }}

{% endif %} {% if organization %}

Organization

{{ organization.legal_name }}

Organization Type

{% if organization.org_type == 'FPO' %} For-Profit Organization {% elif organization.org_type == 'NPO' %} Non-Profit Organization {% elif organization.org_type == 'RES' %} Research Institution {% elif organization.org_type == 'EDU' %} Educational Institution {% elif organization.org_type == 'LEO' %} Law Enforcement Organization {% elif organization.org_type == 'PUB' %} Public Administration {% elif organization.org_type == 'EUP' %} European Project {% else %} Other {% endif %}

Onboarding Authority Status

{% if organization.oa_status == 'OA' %}

Autonomous Onboarding Authority

DID: {{ organization.did }}

{% elif organization.oa_status == 'DELEGATE' %}

Delegated to Another Authority

Delegate PID: {{ organization.delegate_authority_pid }}

{% else %}

FAME Root Authority

FAME DID: {{ organization.delegate_authority_pid }}

{% endif %}
{% endif %}

Organization PID

{% if organization and organization.pid %} {{ organization.pid }} {% else %} Being assigned {% endif %}

{% if organization and organization.status == 'approved' %}

Marketplace Wallet

Manage Digital Euro and FAME tokens

Open Wallet →
{% endif %} {% if organization and organization.status == 'approved' %}

Organization Details

Organization Logo

{% if organization.logo %} {{ organization.legal_name }} logo {% else %}

No logo uploaded

{% endif %}

Website

{% if organization.website_url %} {{ organization.website_url }} {% else %}

Not provided

{% endif %}

Organization Name

{{ organization.legal_name }}

Organization Type

{% if organization.org_type == 'FPO' %}For-Profit Organization {% elif organization.org_type == 'NPO' %}Non-Profit Organization {% elif organization.org_type == 'RES' %}Research Institution {% elif organization.org_type == 'EDU' %}Educational Institution {% elif organization.org_type == 'LEO' %}Law Enforcement Organization {% elif organization.org_type == 'PUB' %}Public Administration {% elif organization.org_type == 'EUP' %}European Project {% else %}Other {% endif %}

{% endif %} {% if organization %}

My Request

Organization Name {{ organization.legal_name }}
Application Status {% if organization.status == 'pending' %} Pending Review {% elif organization.status == 'approved' %} Approved {% elif organization.status == 'rejected' %} Rejected {% endif %}
Submission Date {{ organization.created_at.strftime('%Y-%m-%d') }}
{% endif %} {% if organization and organization.status == 'approved' and organization.oa_status == 'FAME_ROA' %}

User Management

Add users to your organization. New users will receive an invitation to join the federation.

{% endif %} {% if organization and organization.status == 'approved' %}

Federation Requests

{% if pending_requests %}
{% for org in pending_requests %} {% endfor %}
Organization Application Date Voting Ends Status Action
{{ org.status }}
{% if org.id in user_votes %} {% if user_votes[org.id] == 'yes' %}
{% else %}
{% endif %} {% else %}
{% endif %}
{% else %}

No pending federation requests to review.

{% endif %}
{% elif organization %}

You cannot view or vote on federation requests until your organization is approved.

{% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}