{% extends "management/base.html" %} {% load static i18n humanize base_tag management_tag %} {% block page_title %}

{{page_title}}

{% endblock page_title %} {% block content %}
Info

{{owner.name}}

Email {{owner.email}}

Mobile{{owner.phone_number}}

Nationality {{owner.nationality}}

Address {{owner.profile_owner.full_address}}

Summary
Total Balance

{{owner.total_balance_amount|floatformat:"-2"|intcomma|default:0}}

Payout Available Balance

{{owner.available_balance_amount|floatformat:"-2"|intcomma|default:0}}

Products
{% for product in owner.products %}

{% get_product_status_badge product=product %}

{{product.full_address}}
{{product.num_bedroom|floatformat:0}} bed{% if not product.num_bedroom.length == 1 %}s{% endif %} {{product.num_bathroom|floatformat:0}} bath{% if not product.num_bedroom.length == 1 %}s{% endif %} {{product.sqft|floatformat:"-2"|intcomma}}sqft
{{product.num_people_under_lease}} tenant{% if not product.num_people_under_lease == 1 %}s{% endif %} Rent {{product.rent_under_lease|floatformat:"-2"|intcomma}}
{% endfor %}
{% endblock content %}