{% extends "base.html" %} {% block title %}Dashboard - Viral Social Pro{% endblock %} {% block nav_dashboard %}active{% endblock %} {% block mnav_dashboard %}active{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block page_subtitle %}Visao geral da inteligencia viral{% endblock %} {% block content %}

{{ stats.total_videos|default(0) }}

Videos TikTok

{{ stats.viral_count|default(0) }}

Videos Virais (60+)

{{ stats.explosion_count|default(0) }}

Explosoes (10x+)

{{ stats.opportunities|default(0) }}

Para Replicar

{{ stats.total_creators|default(0) }}

Criadores

{{ stats.small_creator_virals|default(0) }}

Virais de Pequenos

{{ "%.1f"|format(stats.avg_viral_score|default(0)) }}

Score Medio

{{ stats.shop_videos|default(0) }}

Com Produtos

Distribuicao por Plataforma

{% set total = stats.total_videos or 1 %}

{{ stats.platform_counts.youtube|default(0) }}

YouTube

{{ stats.platform_counts.tiktok|default(0) }}

TikTok

{{ stats.platform_counts.instagram|default(0) }}

Instagram

Top Videos Virais

Ver todos →
{% for video in videos[:12] %}
{% if video.thumbnail_url %} {{ video.title[:50] }} {% endif %}
{{ video.platform }} {% if video.outlier_ratio >= 10 %} {{ video.outlier_ratio|int }}x {% elif video.outlier_ratio >= 5 %} {{ video.outlier_ratio|int }}x {% endif %}
{{ video.viral_score|int }}
{% if video.duration %}
{{ (video.duration // 60) }}:{{ "%02d"|format(video.duration % 60) }}
{% endif %} {% if video.is_small_creator %} Criador Pequeno {% endif %}

{{ video.title[:80] }}

@{{ video.creator.username if video.creator else 'unknown' }} {% if video.creator and video.creator.followers > 0 %} {{ video.creator.followers|default(0) }} seg {% endif %}
{{ video.views_formatted }}
{% endfor %}
{% if not videos %}

Nenhum video coletado ainda

Inicie uma descoberta para coletar videos virais

Iniciar Descoberta
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}