E-book Distribution Analytics

Updated {{ now.strftime('%Y-%m-%d %H:%M') }}
Back to Command Center
Total Revenue
${{ '%.2f'|format(dist.total_revenue or 0) }}
Orders
{{ dist.orders or 0 }}
Units Sold
{{ dist.units_sold or 0 }}
Average Order Value
${{ '%.2f'|format(dist.aov or 0) }}

Package Build Snapshot

Latest Build{{ ebook.latest_build }}
Core ZIP (KB){{ ebook.core_zip_kb }}
Founder ZIP (KB){{ ebook.founder_zip_kb }}
Institution ZIP (KB){{ ebook.institution_zip_kb }}
Checkout Copy{{ 'Generated' if ebook.checkout_copy else 'Missing' }}

Distribution Channels

{% if dist.channels and dist.channels|length > 0 %} {% for c in dist.channels %} {% endfor %}
ChannelRevenueUnitsConversion
{{ c.name or 'Unknown' }} ${{ '%.2f'|format(c.revenue or 0) }} {{ c.units or 0 }} {{ c.conversion or '—' }}
{% else %}
No channel analytics loaded yet. Add data to the_open_source_student_distribution/output/distribution_metrics.json.
{% endif %}