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

🤝 Collaborations

+ New Collaboration
My Collaborations Pending Invites
{% if collaborations %}
📁 Your Collaborations ({{ collaborations|length }})
{% for collab in collaborations %}
{% if collab.type == 'duet' %} 🎭 {% elif collab.type == 'co-upload' %} 🤝 {% else %} 🎵 {% endif %}
{{ collab.title }} {{ collab.type }} {{ collab.status }}
{% if collab.description %} {{ collab.description[:100] }}{% if collab.description|length > 100 %}...{% endif %} {% endif %} {{ collab.participant_count }} participants {{ collab.video_count }} videos
Updated {{ collab.updated_at|format_time_ago }}
{% endfor %} {% else %}
🤝

No collaborations yet

Create your first collaboration or wait for invites from other creators.

Create Collaboration
{% endif %}
{% endblock %}