{% extends 'base.html' %}{% load static %} {% block title %}My Referrals — Unity Nation{% endblock %} {% block extra_css %} .ref-row{display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:14px;padding:13px 18px;border-top:1px solid rgba(255,255,255,.04);transition:background var(--tr)} .ref-row:hover{background:rgba(255,255,255,.025)} .ref-hd{background:rgba(255,255,255,.03);font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--muted);padding:11px 18px} .r-av{width:36px;height:36px;border-radius:9px;background:rgba(123,95,230,.2);display:flex;align-items:center;justify-content:center;font-size:.85rem;font-weight:700;color:var(--vlt);flex-shrink:0} .link-copy-box{display:flex;flex-direction:column;gap:7px;min-width:260px} .link-txt{background:rgba(255,255,255,.04);border:1px solid var(--border);border-radius:8px;padding:8px 12px;font-size:.74rem;color:var(--muted);word-break:break-all;line-height:1.5} {% endblock %} {% block content %}
Network

My Referrals

Members you directly referred and their activation status.

Active Referrals
{{ activated_count|default:referrals|length }}
{{ remaining|default:0 }} more to unlock marketplace
Referral Bonus
$1.00
Per activated referral, instantly
Marketplace Access
{% if activated_count >= 5 %}🔓{% else %}🔒{% endif %}
{% if activated_count >= 5 %}Unlocked!{% else %}Need {{ remaining }} more active referrals{% endif %}

Your Referral Link

Share this link and earn $1 for every member who activates.

MemberJoinedStatus
{% for ref in referrals %}
{{ ref.referred_user.username|first|upper }}
{{ ref.referred_user.username }}
{{ ref.referred_user.country|default:"Unknown" }}
{{ ref.date_referred|date:"M d, Y" }}
{% if ref.is_active %}Active{% else %}Pending{% endif %}
{% empty %}

No referrals yet

Share your referral link to start building your network.

{% endfor %}
View Full Team →
{% endblock %}