{% extends 'service_partner_app/base_service_partner.html' %} {% load static %} {% block title %}Service Partner Wallet Top-up{% endblock %} {% block content %}
Service Partner Wallet

Top Up Your Wallet

Add funds to your Service Partner wallet so you can pay featured profile fees, premium visibility upgrades, service-related platform charges, and other eligible partner payments.

Account

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

Wallet Type

{{ account_label|default:"Service 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 Service Partner wallet only after payment confirmation. You can later use your wallet balance for eligible partner payments.

Wallet Summary

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

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

What can wallet funds be used for?

Wallet funds can support eligible Service Partner payments.

  • Service Partner featured or premium account fee.
  • Premium profile visibility upgrades.
  • Service-related platform charges where wallet usage is enabled.
  • Other eligible Service Partner payments approved by the platform.

Quick Links

Continue managing your Service Partner account.

{% endblock %}