diff --git a/spp_area/views/area_base.xml b/spp_area/views/area_base.xml
index c6920f8c..16b71312 100644
--- a/spp_area/views/area_base.xml
+++ b/spp_area/views/area_base.xml
@@ -61,7 +61,7 @@
-
+
-
+
diff --git a/spp_gis_report/models/area_ext.py b/spp_gis_report/models/area_ext.py
index 6afc8e1c..c6b720fd 100644
--- a/spp_gis_report/models/area_ext.py
+++ b/spp_gis_report/models/area_ext.py
@@ -17,20 +17,20 @@ class Area(models.Model):
# ===== Reference Data for Normalization =====
population = fields.Integer(
"Population",
- help="Total population from census or estimate",
+ help="Total population from census or official estimate. Used for per-capita normalization in GIS reports.",
)
population_date = fields.Date(
"Population Data Date",
- help="Date of population data",
+ help="Date when the population data was collected or published.",
)
population_source = fields.Char(
"Population Data Source",
- help="Source of population data (e.g., 'National Census 2020')",
+ help="Source of the population data, e.g., 'National Census 2020' or 'UNFPA Estimate'.",
)
household_count = fields.Integer(
"Household Count",
- help="Number of households in this area",
+ help="Number of households in this area. Used for per-household normalization in GIS reports.",
)
# ===== Registry Counts (Updated via scheduled refresh) =====
diff --git a/spp_gis_report/views/area_views.xml b/spp_gis_report/views/area_views.xml
index 3391a5d0..c3dcef93 100644
--- a/spp_gis_report/views/area_views.xml
+++ b/spp_gis_report/views/area_views.xml
@@ -13,17 +13,21 @@ Part of OpenSPP. See LICENSE file for full copyright and licensing details.
20
-
-
+
+
+
+ These fields are populated from external sources such as national census data or official estimates.
+ They are used for normalization in GIS reports (e.g., per-capita or per-household calculations).
+