{% extends 'affiliates_app/base_affiliate.html' %} {% load static %} {% block title %}My Affiliate Profile{% endblock %} {% block content %}
Affiliate Partner Account

My Affiliate Profile

View your personal details, payout information, affiliate tools, and earnings summary.

Profile Photo

{{ profile.full_name|default:user.username }}

Click the image to upload a new profile photo


Profile Details

Username:
{{ user.username }}
Email:
{{ user.email }}
Full Name:
{{ profile.full_name }}
Phone Number:
{{ profile.phone|default:"-" }}
WhatsApp:
{{ profile.whatsapp|default:"-" }}
Country:
{{ profile.country|default:"-" }}

Earnings Summary
Total Earned ${{ profile.total_earned_usd|floatformat:2 }}
Total Paid ${{ profile.total_paid_usd|floatformat:2 }}
Available Balance ${{ profile.available_balance_usd|floatformat:2 }}

Bank & Payout Details
Bank Name:
{{ profile.bank_name|default:"-" }}
Bank Branch:
{{ profile.bank_branch|default:"-" }}
Account Holder:
{{ profile.bank_account_name|default:"-" }}
Account Number:
{{ profile.bank_account_number|default:"-" }}
Payout Notes:
{{ profile.payout_notes|default:"No notes"|linebreaks }}

Affiliate Tools
Affiliate Code:
{{ profile.affiliate_code }}
Affiliate Link:
Share this link through WhatsApp, email, social media, QR code, or printed materials.

Status & Preferences
Status:
{{ profile.get_status_display }}
Active Account:
{% if profile.is_active %} Yes {% else %} No {% endif %}
Affiliate Code:
{{ profile.affiliate_code }}

System Info
Joined On:
{{ profile.created_at|date:"F j, Y" }}
Last Updated:
{{ profile.updated_at|date:"F j, Y" }}
{% endblock %} {% block extra_js %} {% endblock %}