{% extends 'dating_app/base_dating.html' %} {% load static %} {% block title %}Dating Partner Wallet Top-up{% endblock %} {% block content %}
Dating Partner Wallet

Top Up Your Wallet

Add funds to your Dating Partner wallet so you can pay confirmation fees, featured profile upgrades, premium visibility options, and other eligible dating platform payments.

Account

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

Wallet Type

{{ account_label|default:"Dating Partner Wallet" }}

Current Balance

USD {{ wallet.balance_usd|floatformat:2 }}

Top-up Details

Enter the amount you want to add to your wallet and choose your preferred payment method.

{% csrf_token %} {% if form.non_field_errors %}
{% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
{% endif %}
{{ form.amount_usd }} {% for error in form.amount_usd.errors %}
{{ error }}
{% endfor %}
{% for error in form.payment_method.errors %}
{{ error }}
{% endfor %}
Important: Wallet top-up payments are credited to your Dating Partner wallet only after payment confirmation. You can later use your wallet balance for eligible dating platform payments.

Wallet Summary

Your wallet helps you manage future dating partner payments more conveniently.

Available Balance USD {{ wallet.balance_usd|floatformat:2 }}
Wallet Status {% if wallet.is_active %} Active {% else %} Inactive {% endif %}
Profile Type Dating Partner
Minimum Top-up USD 5.00

What can wallet funds be used for?

Wallet funds can support eligible Dating Partner payments.

  • Dating Partner confirmation fee.
  • Featured or premium profile visibility fee.
  • Future dating platform upgrades where wallet usage is enabled.
  • Other eligible Dating Partner payments approved by the platform.

Quick Links

Continue managing your Dating Partner account.

{% endblock %}