{% extends "base.html" %} {% block title %}{{ collab.title }} - Collaboration{% endblock %} {% block og_meta %} {% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if collab.collaboration_type == 'duet' %} 🎭 {% elif collab.collaboration_type == 'co-upload' %} 🤝 {% else %} 🎵 {% endif %}

{{ collab.title }}

Created by {{ collab.owner.display_name }} {{ collab.type }} {{ collab.status }}
{% if collab.description %}

{{ collab.description }}

{% endif %} {% if is_owner or is_participant %}
{% if is_owner or can_invite %} {% endif %} {% if not is_owner and is_participant %}
{% endif %} {% if is_owner %} ✏️ Edit {% endif %}
{% endif %}

👥 Participants ({{ participants|length }})

{% if participants %}
{% for p in participants %}
{% if p.avatar_url %} {{ p.display_name }} {% else %} {{ p.display_name[0].upper() }} {% endif %}
{{ p.display_name }}
{{ p.role }}
{{ p.status }} {% if p.video_id %} 🎬 View Video {% endif %}
{% endfor %}
{% else %}
👥

No participants yet. Be the first to join!

{% endif %}

🎬 Collaboration Videos ({{ videos|length }})

{% if videos %} {% else %}
🎬

No videos added yet. Upload your contribution!

{% if is_participant %} 📹 Upload Video {% endif %}
{% endif %}

Invite to Collaboration

{% endblock %}