{% load i18n %} {% load currency_filters %} {% load wfrs_filters %}
| {% trans "Name" %} | |
|---|---|
| {% trans "First Name" %} | {{ applicant.first_name | default:"-" }} |
| {% trans "Last Name" %} | {{ applicant.last_name | default:"-" }} |
| {% trans "Middle Initial" %} | {{ applicant.middle_initial | default:"-" }} |
| {% trans "Social Security Number / Social Insurance Number" %} | {{ applicant.ssn | default:"-" }} |
| {% trans "Address" %} | |
| {% trans "Line 1" %} | {{ applicant.address.address_line_1 | default:"-" }} |
| {% trans "Line 2" %} | {{ applicant.address.address_line_2 | default:"-" }} |
| {% trans "City" %} | {{ applicant.address.city | default:"-" }} |
| {% trans "State" %} | {{ applicant.address.get_state_code_display | default:"-" }} |
| {% trans "Postal Code" %} | {{ applicant.address.postal_code | default:"-" }} |
| {% trans "Contact" %} | |
| {% trans "Email Address" %} | {{ applicant.email_address | default:"-" }} |
| {% trans "Home Phone" %} | {{ applicant.home_phone | default:"-" }} |
| {% trans "Cell Phone" %} | {{ applicant.mobile_phone | default:"-" }} |
| {% trans "Residence" %} | |
| {% trans "Housing Status" %} | {{ applicant.get_housing_status_display | default:"-" }} |
| {% trans "Employment" %} | |
| {% trans "Annual Income" %} | {{ applicant.annual_income | currency | default:"-" }} |
| {% trans "Employer Name" %} | {{ applicant.employer_name | default:"-" }} |
| {% trans "Employer Phone" %} | {{ applicant.work_phone | default:"-" }} |