{% extends "page.html" %} {% load static %} {% block title %} {% if rejecting %}Decline Invitation{% else %}Agent Invitation{% endif %} {% endblock %} {% block content %}
{% if invalid_token %}

Invalid Invitation

This invitation link is not valid or has expired.

{% elif expired %}

Invitation Expired

This invitation for {{ agent.name }} has expired.

Please contact {{ invite.invited_by.get_full_name|default:invite.invited_by.username }} for a new invitation.

{% elif already_responded %}
{% if status == 'Accepted' %} {% else %} {% endif %}

{{ status }}

You have {{ status|lower }} this invitation for {{ agent.name }}.

{% if status == 'Accepted' %}

You can communicate with {{ agent.name }} by sending emails to: {{ agent.comms_endpoints.all.0.address }}

{% endif %}
{% elif rejecting and can_reject %}

Decline Invitation

Are you sure you want to decline this invitation to communicate with {{ agent.name }}?

About {{ agent.name }}:

{{ agent.charter|truncatewords:30 }}

Invited by {{ invite.invited_by.get_full_name|default:invite.invited_by.username }}

{% csrf_token %}
Cancel
{% elif can_accept %}

You're Invited!

{{ invite.invited_by.get_full_name|default:invite.invited_by.username }} has invited you to communicate with their AI agent.

{{ agent.name }}

{{ agent.charter|truncatewords:30 }}

Once you accept, you can email {{ agent.name }} directly to start conversations.

{% csrf_token %}
Decline
{% endif %}
{% endblock %}