{% extends "layout/base.html" %} {% block title %}FAME Marketplace Wallet{% endblock %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}

Marketplace Wallet

Organization: {{ organization.legal_name }}

{% if not de_account %}

Digital Euro Account Required

Create a Digital Euro account to manage FAME tokens for your organization.

â„šī¸ Test Mode:
This is a simulated Digital Euro environment for demonstration purposes. Your account will be created with a mock balance to explore the marketplace wallet features safely.

← Back to Control Panel

{% else %}

Account Active

Your organization has a Digital Euro account configured in test mode. Access your wallet to explore marketplace features, manage FAME tokens and view transactions.

Holding ID: {{ de_account.holding_id }}
EUBAN: {{ de_account.euban }}
Account Type: {{ de_account.holding_type|upper }}
Status: ACTIVE
Access Wallet Dashboard

← Back to Control Panel

{% endif %}
{% endblock %}