{% extends "base.html" %} {% block title %}Admin Market{% endblock %} {% block content %}
| 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. | |||||||||