{% extends 'dashboard/base.html' %} {% load static %} {% block content %}

Invite Management

Manage your event invitations

{% if invites %}
{% for invite in invites %} {% endfor %}
# Name Email Phone Status Message SID Actions
{{ forloop.counter }} {{ invite.name }} {{ invite.email|default:"-" }} {{ invite.phone|default:"-" }} {% if invite.is_invited %} Invited {% else %} Not Sent {% endif %} {{ invite.message_sid|default:"-" }} {% if invite.is_invited %} {% else %} {% endif %}
{% else %}
Your invite list is empty.
{% endif %}
{% endblock %} {% block customJS %} {% endblock %}