{% extends 'santa_app/base.html' %} {% block content %}

πŸŽ… Org Admin Dashboard β€” {{ org.org_name }}

βž• Add Participant

Add New

πŸ”€ Shuffle Assignments

{% csrf_token %}

πŸŽ„ Organization Rules

{% if rules.content and rules.content|striptags|length > 0 %} {% if rules.content|length > 200 %}
{{ rules.content }}
{% else %}

{{ rules.content }}

{% endif %} {% else %}
πŸŽ… Secret Santa Guidelines πŸŽ„

1️⃣ Keep your identity secret until the gift exchange.
2️⃣ Budget between β‚Ή500 - β‚Ή1000.
3️⃣ Gifts should be thoughtful and fun β€” no offensive items.
4️⃣ Be ready before event day.
5️⃣ Spread joy and kindness β€” it’s the Christmas spirit! ❀️
{% endif %}

πŸ“ Edit Rules

Edit Rules

🎁 Participants

{% for p in participants %} {% empty %} {% endfor %}
Sender Email Status Assigned & Hobbies
{{ p.name|default:"(No Name)" }} {{ p.email }} {% if p.invite_accepted %} Accepted βœ… {% elif p.invited %} Invited ⏳ {% else %} Not Invited ❌ {% endif %} {% if p.assigned_to %} 🎁 {{ p.assigned_to.name }}
{% if p.assigned_to.hobbies %} {{ p.assigned_to.hobbies }} {% else %} No hobbies listed {% endif %} {% else %} Not Assigned {% endif %}
No participants yet
{% if participants|length > 10 %}
{% endif %}
{% endblock %}