{% extends "base.html" %} {% block title %}Admin Market{% endblock %} {% block content %}

Market Administration

{% for listing in market_listings %} {% else %} {% endfor %}
ID Title Owner Source Status 1M Tokens 1K Requests Revenue Requests Active
{{ listing.id }} {{ listing.title }} {{ listing.owner_username }} {{ listing.source_type }} / {{ listing.source_id }} {{ 'Online' if listing.online else 'Offline' }} {{ listing.price_per_million_tokens }} {{ listing.price_per_1000_requests }} {{ '%.2f'|format((listing.stats or {}).gross_revenue or 0) }} {{ (listing.stats or {}).total_requests or 0 }} {{ 'Yes' if listing.is_active else 'No' }}
No market listings match the current filters.
Showing page {{ pagination.page }} of {{ pagination.total_pages }} ({{ pagination.total }} listings)
{% if pagination.has_prev %} Previous {% endif %} {% if pagination.total_pages > 1 %} {{ pagination.page }} {% endif %} {% if pagination.has_next %} Next {% endif %}
{% endblock %}