{% extends 'dashboard/layout.html' %} {% load i18n %} {% load currency_filters %} {% load wfrs_filters %} {% block title %} {% trans "Credit Application Details" %} | {% trans "Wells Fargo" %} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans "Credit Application Details" %} {% endblock %} {% block dashboard_content %}

{% trans "General" %}

{% trans "Account" %} {% if object.account %} {{ object.account }} {% else %} - {% endif %}
{% trans "Email Address" %} {{ object.email | default:"-" }}
{% trans "Created Date" %} {{ object.created_datetime | default:"-" }}
{% trans "Modified Date" %} {{ object.modified_datetime | default:"-" }}

{% trans "Main Applicant" %}

{% trans "Name" %}
{% trans "First Name" %} {{ object.main_first_name | default:"-" }}
{% trans "Last Name" %} {{ object.main_last_name | default:"-" }}
{% trans "Middle Initial" %} {{ object.main_middle_initial | default:"-" }}
{% trans "Social Security Number / Social Insurance Number" %} {{ object.main_ssn | default:"-" }}
{% trans "Address" %}
{% trans "Line 1" %} {{ object.main_address_line1 | default:"-" }}
{% trans "Line 2" %} {{ object.main_address_line2 | default:"-" }}
{% trans "City" %} {{ object.main_address_city | default:"-" }}
{% trans "State" %} {{ object.main_address_state | default:"-" }}
{% trans "Postal Code" %} {{ object.main_address_postcode | default:"-" }}
{% trans "Contact" %}
{% trans "Home Phone" %} {{ object.main_home_phone | default:"-" }}
{% trans "Cell Phone" %} {{ object.main_cell_phone | default:"-" }}
{% trans "Residence" %}
{% trans "Home Value" %} {{ object.main_home_value | currency | default:"-" }}
{% trans "Mortgage Balance" %} {{ object.main_mortgage_balance | currency | default:"-" }}
{% trans "Time at Address" %} {{ object.main_time_at_address | timeat }}
{% trans "Housing Status" %} {{ object.main_housing_status | default:"-" }}
{% trans "Employment" %}
{% trans "Occupation" %} {{ object.main_occupation | default:"-" }}
{% trans "Annual Income" %} {{ object.main_annual_income | currency | default:"-" }}
{% trans "Employer Name" %} {{ object.main_employer_name | default:"-" }}
{% trans "Time at Employer" %} {{ object.main_time_at_employer | timeat }}
{% trans "Employer Phone" %} {{ object.main_employer_phone | default:"-" }}
{% trans "Photo ID" %}
{% trans "Photo ID Type" %} {{ object.main_photo_id_type | default:"-" }}
{% trans "Photo ID Number" %} {{ object.main_photo_id_number | default:"-" }}
{% trans "Driver's License Province" %} {{ object.main_drivers_license_province | default:"-" }}
{% trans "Photo ID Expiration Date" %} {{ object.main_photo_id_expiration | default:"-" }}

{% trans "Secondary Applicant" %}

{% trans "Name" %}
{% trans "First Name" %} {{ object.joint_first_name | default:"-" }}
{% trans "Last Name" %} {{ object.joint_last_name | default:"-" }}
{% trans "Middle Initial" %} {{ object.joint_middle_initial | default:"-" }}
{% trans "Social Security Number / Social Insurance Number" %} {{ object.joint_ssn | default:"-" }}
{% trans "Address" %}
{% trans "Line 1" %} {{ object.joint_address_line1 | default:"-" }}
{% trans "Line 2" %} {{ object.joint_address_line2 | default:"-" }}
{% trans "City" %} {{ object.joint_address_city | default:"-" }}
{% trans "State" %} {{ object.joint_address_state | default:"-" }}
{% trans "Postal Code" %} {{ object.joint_address_postcode | default:"-" }}
{% trans "Contact" %}
{% trans "Cell Phone" %} {{ object.joint_cell_phone | default:"-" }}
{% trans "Employment" %}
{% trans "Occupation" %} {{ object.joint_occupation | default:"-" }}
{% trans "Annual Income" %} {{ object.joint_annual_income | currency | default:"-" }}
{% trans "Employer Name" %} {{ object.joint_employer_name | default:"-" }}
{% trans "Time at Employer" %} {{ object.joint_time_at_employer | timeat }}
{% trans "Employer Phone" %} {{ object.joint_employer_phone | default:"-" }}
{% trans "Photo ID" %}
{% trans "Photo ID Type" %} {{ object.joint_photo_id_type | default:"-" }}
{% trans "Photo ID Number" %} {{ object.joint_photo_id_number | default:"-" }}
{% trans "Driver's License Province" %} {{ object.joint_drivers_license_province | default:"-" }}
{% trans "Photo ID Expiration Date" %} {{ object.joint_photo_id_expiration | default:"-" }}
{% endblock %}