{% extends 'dating_app/base_dating.html' %} {% block title %}Payment Center{% endblock %} {% block content %}
Dating Partner Dashboard

Payment Center

Review your due, upcoming, optional, and completed payments connected to your Date in Sri Lanka Dating Partner account, confirmation process, and featured profile opportunities.

Profile Status

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

Confirmed

{% if dating_partner.is_confirmed %} Yes {% else %} No {% endif %}

Featured Profile

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

Total Due

${{ total_due }}

Due dating-partner charges ready for checkout.

Upcoming / Estimated

${{ total_upcoming }}

Future or pending payment items.

Total Paid

${{ total_paid }}

Completed payments recorded so far.

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 %}