{% extends "console_page.html" %} {% block title %}Agent Collaboration Invite{% endblock %} {% block console_content %}

Collaboration invite

{% if invalid_token %} Invalid Invitation {% elif expired %} Invitation Expired {% elif wrong_account %} Sign In Required {% elif already_responded %} Invitation {% if invite.status == "accepted" %}Accepted{% elif invite.status == "rejected" %}Declined{% else %}{{ status }}{% endif %} {% elif rejecting %} Decline Collaboration? {% else %} Join Collaboration? {% endif %}

{% if invalid_token %}

This invitation link is invalid or has been removed.

Ask the agent owner to send a new invite.

{% elif expired %}

This invitation has expired.

Please contact {{ agent.user.get_full_name|default:agent.user.username }} to request a new invitation.

{% elif wrong_account %}

This invitation was sent to a different account. Please sign in with the invited account to respond.

{% csrf_token %}
{% elif already_responded %}
{% if invite.status == "accepted" %}

You have accepted this invitation.

{% elif invite.status == "rejected" %}

You have declined this invitation.

{% else %}

This invitation has already been responded to.

{% endif %}
{% else %}

{{ agent.name }}

{{ agent.charter }}

Invited by {{ agent.user.get_full_name|default:agent.user.username }}

{% if can_accept %}
{% csrf_token %} Decline Invitation
{% elif can_reject %}
{% csrf_token %} Go Back
{% endif %}
{% endif %}
{% endblock %}