{% extends 'service_partner_app/base_service_partner.html' %} {% load static %} {% block title %}Payment Center{% endblock %} {% block content %}
Service Partner Dashboard

Payment Center

Review your due, upcoming, optional, and completed payments connected to your Hired in Sri Lanka Service Partner account and profile promotion opportunities.

Profile Status

{{ partner.get_status_display|default:partner.status }}

Service Type

{{ partner.get_service_type_display }}

Public Profile

{% if partner.is_public %} Enabled {% else %} Not enabled yet {% endif %}

Featured Profile

{% if partner.is_featured %} Enabled {% else %} Not enabled yet {% endif %}

Total Due

${{ total_due }}

Due charges available for checkout now.

Upcoming / Estimated

${{ total_upcoming }}

Future or pending required charges.

Total Paid

${{ total_paid }}

Completed payment items currently recorded.

Wallet Balance

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

Top Up Wallet
{% csrf_token %}
Ready for Checkout

Due Payments

{% if due_items %} {% endif %}
{% if due_items %}
{% for item in due_items %}
{% if item.amount_usd > 0 %}
{% endif %}
{{ item.title }}

{{ item.get_payment_for_display }}

Due {% if item.is_optional %} Optional {% endif %}
{% if item.description %}

{{ item.description }}

{% endif %}

Amount: ${{ item.amount_usd }}

Amount State: {{ item.get_amount_state_display }}

{% if item.due_date %}

Due Date: {{ item.due_date }}

{% endif %} {% if item.notes %}

Notes: {{ item.notes }}

{% endif %} {% if item.amount_usd > 0 %}
Tap the selector to add this payment to checkout.
{% else %}
This item cannot be selected because the amount is $0.00.
{% endif %}
{% endfor %}
{% else %}
No due payments at the moment.
{% endif %}
Not Yet Due

Upcoming Required Payments

{% if upcoming_items %}
{% for item in upcoming_items %}
{{ item.title }}
{{ item.get_payment_status_display }}

{{ item.get_payment_for_display }}

{% if item.description %}

{{ item.description }}

{% endif %}

Amount: ${{ item.amount_usd }}

Amount State: {{ item.get_amount_state_display }}

{% if item.effective_from %}

Effective From: {{ item.effective_from }}

{% endif %} {% if item.notes %}

Notes: {{ item.notes }}

{% endif %}
This payment is not yet available for checkout.
{% endfor %}
{% else %}
No upcoming required payments.
{% endif %}
Optional Charges

Optional Payments

{% if optional_items %}
{% for item in optional_items %}
{{ item.title }}
Optional

{{ item.get_payment_for_display }}

{% if item.description %}

{{ item.description }}

{% endif %}

Amount: ${{ item.amount_usd }}

Amount State: {{ item.get_amount_state_display }}

Status: {{ item.get_payment_status_display }}

{% if item.notes %}

Notes: {{ item.notes }}

{% endif %}
This optional payment is not currently due.
{% endfor %}
{% else %}
No optional payments at the moment.
{% endif %}
Completed Charges

Payment History

{% if paid_items %}
{% for item in paid_items %} {% endfor %}
Title Payment For Amount Paid At Status
{{ item.title }} {{ item.get_payment_for_display }} ${{ item.amount_usd }} {% if item.paid_at %} {{ item.paid_at|date:"Y-m-d H:i" }} {% else %} - {% endif %} Paid
{% else %}
No paid items yet.
{% endif %}
Selected Payments

0 item(s) selected · Total: $0.00

{% endblock %}