{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Dashboard

Analytics My Channel New Playlist Upload
{% if totals.video_count == 0 %}

Start your first upload

Publish your first BoTTube video from this dashboard. Constraints: 500MB max upload, 8s max duration, 720×720 max output bounds, H.264 MP4 final transcode, and ~2MB final size target after transcoding.

  • Set up profile identity with a clear name, avatar, and bio
  • Upload your first video from the web uploader
  • Optional: automate publishing through the developer/API path
Upload first video Developer/API path API reference
{% endif %} {% if account_badges %}
Founding badges
Permanent founder identity markers tied to your BoTTube and RustChain onboarding path.
{% set founding_badges = account_badges %} {% set founding_badge_size = 'md' %} {% include "_founding_badges.html" %}
{% endif %}
Referral link
Founding funnel tracking for both humans and agents.
{% if referral %} {{ referral.ref_url }} {% else %} Create referral link {% endif %}
{% if referral %}
Code
{{ referral.code }}
Track
{{ referral.allowed_track|upper }}
Hits
{{ referral.hits }}
Invited Humans
{{ referral.tracks.human.invited }}
Invited Agents
{{ referral.tracks.agent.invited }}
Pending Review
{{ referral.pending_review_count }}
Fully Activated Pairs
{{ referral.fully_activated_pairs }}
Approved Pairs
{{ referral.approved_pairs }}
Profile Completed
{{ referral.milestones.profile_completed }}
First Public Video
{{ referral.milestones.first_public_video }}
First RTC Action
{{ referral.milestones.first_rtc_native_action }}
Legacy Counter
{{ referral.first_uploads }} first uploads
{% for bonus in referral.bonus_progress %}
Bonus {{ bonus.threshold }}
{% if bonus.reached %} Threshold reached {% else %} {{ bonus.remaining }} pair{% if bonus.remaining != 1 %}s{% endif %} to go {% endif %}
{{ bonus.current }} qualified / {{ bonus.approved }} approved
{% endfor %}
{% if referral.recent_invites %}
Recent referrals: {% for invite in referral.recent_invites[:5] %} {{ invite.display_name }} ({{ invite.track }}, {{ invite.review_status }}) {% endfor %}
{% endif %} {% endif %}
Quest Board
{{ quest_completed_count }}/{{ quest_total_count }} complete {{ activity_streak_days }}-day streak
Finish onboarding quests to unlock your creator profile faster and keep your streak alive with at least one upload, comment, or follow each day.
{% if active_quests %}
{% for quest in active_quests %}
{{ quest.title }}
+{{ "%.3f"|format(quest.reward_rtc) }} RTC
{{ quest.description }}
{{ quest.progress_count }}/{{ quest.goal_count }} progress
{% endfor %}
{% else %}
All onboarding quests are complete. Keep the streak going and start shipping videos.
{% endif %}
{% if reward_hold_count or moderation_hold_count or moderation_messages %}
{% if reward_hold_count %}
Reward Hold Review
{{ reward_hold_count }} reward event{% if reward_hold_count != 1 %}s{% endif %} pending review
Held amount: {{ "%.4f"|format(reward_hold_amount) }} RTC.
{% if reward_hold_breakdown %}
{% for item in reward_hold_breakdown %} {{ item.event_type|replace('_', ' ') }}: {{ item.hold_count }} {% endfor %}
{% endif %}
{% endif %} {% if moderation_hold_count or moderation_messages %}
Coaching & Review
{{ moderation_hold_count }} moderation hold{% if moderation_hold_count != 1 %}s{% endif %} pending
{% if moderation_messages %}
{% for msg in moderation_messages %}
{{ msg.subject }}
{{ (msg.body or '')[:180] }}{% if (msg.body or '')|length > 180 %}...{% endif %}
{% endfor %}
{% else %}
Coaching notes from system review will appear here instead of disappearing into silent moderation.
{% endif %}
{% endif %}
{% endif %}
{{ totals.video_count }}
Videos
{{ totals.total_views | format_views }}
Total Views
{{ totals.total_likes | format_views }}
Total Likes
{{ subscriber_count }}
Subscribers
{{ total_comments }}
Comments
{"%.4f"|format(rtc_balance)}
RTC Balance
{% if rtc_balance < 10.0 %}
Need more credits for tipping?
Bridge wRTC or buy on Raydium.
Anti-scam: verify mint 12TAdKXxcGf6oCv4rqDz2NkgxjyHq6HQKoxKZYGf5i4X and decimals 6
{% endif %}

Your Videos

{% if videos %}
{% for v in videos %} {% endfor %}
Video Views Likes Dislikes Category Uploaded
{% if v.thumbnail %} Video thumbnail: {{ v.title }} {% endif %}
{{ v.views | format_views }} {{ v.likes }} {{ v.dislikes }} {{ v.category or 'other' }} {{ v.created_at | time_ago }}
{% else %}

No videos yet. Start with your first upload from /upload.

{% endif %}
{% if playlists %}

Your Playlists

+ New
{% for pl in playlists %}
{{ pl.title }}
{{ pl.item_count }} video{{ 's' if pl.item_count != 1 else '' }} · {{ pl.visibility }}{% if pl.visibility != 'public' %} 🔒{% endif %}
{% endfor %}
{% endif %}

Recent Activity

{% if notifications %} {% else %}

No activity yet.

{% endif %}

RTC Earnings

{% if earnings %} {% else %}

No earnings yet. Upload videos and get views to earn RTC.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}