{% extends "management/base.html" %} {% load static i18n humanize mathfilters base_tag management_tag javascript_tag %} {% block page_title %} {% get_management_roles as MANAGEMENT_ROLES %}

House Info.

{% endblock page_title %} {% block content %}
{% if residence %}
{% if residence.payments.unpaid_amount > 0 or residence.payments.payment_in_progress_amount > 0 %}
{% if residence.payments.unpaid_amount %} {{payment_dday|d_day_format}} {% endif %}
Outstanding Balance

{{residence.payments.unpaid_amount|floatformat:"-2"|intcomma}}

{% if residence.payments.payment_in_progress_amount > 0 %}

Amount In Progress {{residence.payments.payment_in_progress_amount|floatformat:"-2"|intcomma}}

{% endif %} {% if not residence.lease.is_auto_paid and has_verified_bank_account %} {% elif residence.lease.is_auto_paid and allowed_to_disable_autopay %} {% endif %} {% if residence.payments.unpaid_amount > 0 %} {% endif %}

※ The rent may be subject to additional fees depending on the method of payment. For example, credit cards are subject to {{residence.payments.card_payment.fee_rate|default:0|mul:100|floatformat:"0"}}% processing fee.

{% endif %}
Rent

{{residence.lease.rent|floatformat:"-2"|intcomma}}

Deposit

{{residence.lease.deposit|floatformat:"-2"|intcomma}}

Rent Count

{{residence.payments.rent_count}} times

Payment Due

{{residence.lease.payment_day|ord}} of every month

Contract Info.

Start Date {{residence.lease.start_date|date:"M. j. Y."}}

End Date {{residence.lease.end_date|date:"M. j. Y."}}

Name{{residence.lease.tenant_name}}

Mobile {{residence.lease.tenant_phone_number}}

Email {{residence.lease.tenant_email}}

{{residence.product.full_address}}

Added Date: {{ residence.product.added_at }}

{{residence.product.num_bedroom|floatformat:"-1"}} beds {{residence.product.num_bathroom|floatformat:"-1"}} baths {{residence.product.sqft|floatformat:"-1"|intcomma}} sqft

Description
{{residence.product.description|safe}}
Facts and Features
Type
{{residence.product.property_type}}
Year Built
{{residence.product.built_year}}
Heating
{{residence.product.amenities.heater}}
Cooling
{{residence.product.amenities.cooling}}
Parking
{% if residence.product.num_parking %} {{residence.product.num_parking|floatformat:"-1"}} space(s) {% else %} None {% endif %}
Lot
{{residence.product.sqft|floatformat:"-1"|intcomma}} sqft
{% if residence.product.map_url %}
{% endif %}
{% else %}
No rental property registered
{% endif %}
{% endblock content %} {% block stripe %} {% if residence.payments.unpaid_amount > 0 %} {% endif %} {% endblock stripe %} {% block modal %} {% include 'management/partials/bank_accounts_modal.html' with bank_accounts=bank_accounts %} {% include 'management/partials/autopay_setup_modal.html' with residence=residence bank_accounts=bank_accounts %} {% get_current_language as LANGUAGE_CODE %} {% get_agreement_by_type_language service_type='management' agreement_type='pay' language=LANGUAGE_CODE as AGREEMENT_PAY %} {% include 'management/partials/base_modal.html' with id="agreement_pay" title=AGREEMENT_PAY.title content=AGREEMENT_PAY.content|safe %} {% endblock modal %}