{% extends 'property_manager_app/base_property_manager.html' %} {% load static %} {% block title %}Payment Center | Home in Sri Lanka{% endblock %} {% block content %}
Property Care Payment Center

Manage Your Property Care Payments

Review your due, upcoming, optional, and completed payments connected to your finalized Home in Sri Lanka Property Care Plans. Select due charges and proceed to checkout securely.

Managed Properties
{{ managed_properties_count }}
Finalized Care Plans
{{ active_care_plans_count }}
Active Due Plan Fees
{{ active_due_plan_fees_count }}

Total Due

${{ total_due }}

Upcoming / Estimated

${{ total_upcoming }}

Total Paid

${{ total_paid }}

Wallet Balance

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

Top Up Wallet
{% csrf_token %}

Due Property Care 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.effective_from %}

Effective From: {{ item.effective_from }}

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

Notes: {{ item.notes }}

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

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 Property Care payments.
{% endif %}

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 Property Care payments at the moment.
{% endif %}

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 Property Care payment items yet.
{% endif %}
Selected Payments

0 item(s) selected · Total: $0.00

{% endblock %}