{% extends "base.html" %} {% block title %}Gestion du Programme Partenaire{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Candidatures en Attente

{{ pending_validation|length }}
{% if pending_validation %}
{% for profile in pending_validation %}

Détails de Paiement
{{ profile.payment_details|default:"Aucun détail de paiement fourni." }}
{% if profile.phone %}
Téléphone

{{ profile.phone }}

{% endif %}
Actions
{% csrf_token %}
{% csrf_token %}
{% endfor %}
{% else %}
Aucune candidature en attente

Toutes les candidatures ont été traitées.

{% endif %}

Affiliés Actifs

{{ active_affiliates|length }}
{% if active_affiliates %}
{% for affiliate in active_affiliates %} {% endfor %}
Affilié Code Parrain Clics / Inscrits En Attente Total Gagné Actions
{{ affiliate.user.get_full_name }}
{{ affiliate.user.email }}
{{ affiliate.referral_code|default:"N/A" }} {{ affiliate.total_clicks|default:0 }} / {{ affiliate.total_referrals|default:0 }} {{ affiliate.pending_payout|floatformat:0 }} FCFA {{ affiliate.total_earned|floatformat:0 }} FCFA
{% csrf_token %}
{% else %}
Aucun affilié actif

Les affiliés approuvés apparaîtront ici.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}