{% extends "base.html" %} {% block title %}Pending Collaboration Invites{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

📬 Collaboration Invites

My Collaborations Pending Invites
{% if invites %}

{{ invites|length }} pending invite{{ 's' if invites|length != 1 else '' }}

{% for invite in invites %}
{% if invite.collab_type == 'duet' %} 🎭 {% elif invite.collab_type == 'co-upload' %} 🤝 {% else %} 🎵 {% endif %}
{{ invite.collab_title }} {{ invite.collab_type }}
From {{ invite.inviter_display }} (@{{ invite.inviter_name }}) Invited {{ invite.created_at|format_time_ago }}
{% if invite.message %}
"{{ invite.message }}"
{% endif %} {% if invite.is_expired %}
⚠️ This invite has expired
{% else %}
⏰ Expires in {{ invite.expires_at|format_time_until }}
{% endif %}
{% if not invite.is_expired %} {% endif %} 👁️ View Details
{% endfor %} {% else %}
📬

No pending invites

You don't have any collaboration invites at the moment.

View My Collaborations
{% endif %}
{% endblock %}