{% include 'admin/includes/part.header.html' %}
Customer Report
Customer Details

Customer ID Number

{{user.ID_number}}

Customer Name

{{user.name}}

Customer Phone

{{user.phone}}

Gender

{{user.gender}}

Date of Birth

{{user.date_of_birth}}

Marital Status

{{user.marital_status}}

Residential Status

{{user.residential}}

Home Residence

{{user.home_residence}}

Landmark

{{user.landmark}}

Social Name

{{user.social_name}}

Next of Kin

{{user.next_of_kin}}

Relationship with next of kin

{{user.n_relationship}}

Customer Business Details

Business Name

{{user.business_name}}

Business Type

{{user.business_type}}

Business Year of Establishment

{{user.business_year_est}}

Business Location

{{user.business_location}}

Business Landmark

{{user.business_landmark}}

Average Daily Sales

{{user.business_average_daily_sales}}

Does the business have a license

{% if user.business_has_local_license %} Yes {% else %} No {% endif %}

Referee Details

Referee's Name

{{user.referee_name}}

Relationship

{{user.referee_relationship}}

Phone

{{user.referee_phone}}

Guantor Details

Guarantor's Name

{{loan.guarantor_name}}

Guarantor's Phone

{{loan.guarantor_phone}}

Occupation

{{loan.guarantor_occupation}}

Address

{{loan.guarantor_address}}

Guarantor Signed on

{{loan.guarantor_date}}

Customer Loans
{%for loan in user.loans%}

Loan Amount

Kshs {{ loan.amount or 0 }}

Paid Amount

Kshs {{ loan.paid_amount or 0 }}

Loan Type

{{ loan.loan_type }}

Loan Date

{{ loan.date_uploaded }}

{% if loan.approved %} Approved {% else %} Not Approved {% endif %} {% if loan.disbursed %} Disbursed {% endif %} {% if loan.fully_paid%} Fully Repaid {% endif %}
{% endfor %}
{% include 'admin/includes/part.footer.html' %}