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

User History: Observations


{% if no_obs == True %}

No Observations submitted yet!

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

Observation Individuals

{% for q in gen_obs_ind_objects_fin %} {% endfor %}
# ID Client Location Client Homeless Client Age Client Gender Client Race Client Ethnicity Client Information
{{ q.num }} {{ q.id }} {{ q.client_location }} {{ q.upd_client_homeless }} {{ q.upd_client_age }} {{ q.upd_client_gender }} {{ q.upd_client_race }} {{ q.upd_client_ethnicity }} {{ q.client_information }}
{% endif %} {% if g_obs_num >= 1 %}

General Observations

{% for q in gen_obs_objects_fin %} {% endfor %}
# Observation Reason # Adults # Children # Unsure # Household Client(s) Time
{{ q.num }} {{ q.upd_obs_reason }} {{ q.obs_adults }} {{ q.obs_children }} {{ q.obs_unsure }} {{ q.obs_householdnum }} {{ q.clients }} {{ q.obs_time }}
{% endif %}
{% endblock %}