{% extends "base.html" %} {% block title %}Digital Assets Marketplace{% endblock %} {% block content %}

Digital Assets Marketplace

{{ stats.active_listings }}

Active Listings

${{ stats.total_value }}

Total Market Value

{{ stats.total_listings }}

Total Listings

${{ stats.total_sales }}

Total Sales

Featured Listings
{% if featured_listings|length > 0 %} {% for listing in featured_listings %}
Featured
{% if listing.image_url %} {{ listing.title }} {% else %}
{% endif %}
{{ listing.title }}

{{ listing.description }}

{{ listing.listing_type }} {{ listing.asset_type }}
{% endfor %} {% else %}

No featured listings available at this time.

{% endif %}
Recent Listings
{% if recent_listings|length > 0 %} {% for listing in recent_listings %} {% endfor %} {% else %} {% endif %}
Asset Type Price Listing Type Seller Listed Action
{% if listing.image_url %} {{ listing.asset_name }} {% else %} {% endif %} {{ listing.asset_name }}
{% if listing.asset_type == "Token" %} {{ listing.asset_type }} {% elif listing.asset_type == "NFT" %} {{ listing.asset_type }} {% elif listing.asset_type == "RealEstate" %} Real Estate {% elif listing.asset_type == "IntellectualProperty" %} IP {% else %} {{ listing.asset_type }} {% endif %} ${{ listing.price }} {{ listing.listing_type }} {{ listing.seller_name }} {{ listing.created_at|date }} View
No recent listings available.
Recent Sales
{% if recent_sales|length > 0 %} {% for listing in recent_sales %} {% endfor %} {% else %} {% endif %}
Asset Price Date
{% if listing.image_url %} {{ listing.asset_name }} {% else %} {% endif %} {{ listing.asset_name }}
${{ listing.sale_price }} {{ listing.sold_at|date }}
No recent sales available.
Listing Types
{% for type, count in stats.listings_by_type %} {% endfor %}
Type Count
{{ type }} {{ count }}
{% endblock %}