{% extends "mainTemplate.html" %} {% block title %}User History{% endblock %} {% block content %}

User History: Surveys


{% if no_surv == True %}

No Surveys submitted yet!

{% endif %} {% if surv_i_num >= 1 %}

Survey Individuals

{% for q in survey_ind_objects_fin %} {% endfor %}
Client Initials Rel. to Head of Household Staying with Head Where Staying Tonight Age Exact Ethnicity Race Race Other Gender Served Guard Res VHA Veteran's Benefits First Time Homeless Length Homeless Number Hist. Time Homeless Hist. Length Homeless Hist. Homeless Number Over 18 ID
{{ q.client_survey_initials }} {{ q.upd_s_i_relationship }} {{ q.upd_s_i_hhconfirm }} {{ q.client_survey_nonhhlastnight }} {{ q.client_survey_age_exact }} {{ q.upd_s_i_ethnicity }} {{ q.upd_s_i_race }} {{ q.client_survey_race_other }} {{ q.upd_s_i_gender }} {{ q.upd_s_i_served }} {{ q.client_survey_served_guard_res }} {{ q.client_survey_served_VHA }} {{ q.client_survey_benefits }} {{ q.upd_s_i_firsttime }} {{ q.upd_s_i_homeless_length }} {{ q.client_survey_homelesslength_number }} {{ q.upd_s_i_t_homeless }} {{ q.upd_s_i_t_homeless_length }} {{ q.client_survey_timeshomeless_number }} {{ q.client_survey_over18_id }}
{% endif %} {% if surv_e_num >= 1 %}

Survey Individual Extras

{% for q in survey_ind_extra_objects_fin %} {% endfor %}
ID Substance Mental Health Physical Health Stable Housing Barriers Special Education HIV/AIDS Domestic Violence
{{ q.id }} {{ q.upd_s_e_substance }} {{ q.upd_s_e_mhealth }} {{ q.upd_s_e_phealth }} {{ q.upd_s_e_stablehousing }} {{ q.upd_s_e_barriers_list }} {{ q.upd_s_e_specialed }} {{ q.upd_s_e_HIVAIDS }} {{ q.upd_s_e_DV }}
{% endif %} {% if surv_num >= 1 %}

Surveys

{% for q in survey_objects_fin %} {% endfor %}
# Survey Last Night Repeat # Adults # Children # Household Survey Client(s)
{{ q.num }} {{ q.upd_survey_lastnight }} {{ q.upd_survey_repeat }} {{ q.survey_adults }} {{ q.survey_children }} {{ q.survey_householdnum }} {{ q.clients }}
{% endif %}
{% endblock %}