{% extends "base.html" %} {% block title %}{{ farmer.name }} Profile | NAIMS Namibia{% endblock %} {% block content %}
{{ farmer.name|slice:":1" }}

{{ farmer.name }}

Active Registration
  • ID / Passport {{ farmer.id_number }}
  • Phone Number {{ farmer.phone_number|default:"N/A" }}
  • Constituency {{ farmer.constituency.name }}
  • Region {{ farmer.constituency.region.name }}
  • Date Joined {{ farmer.created_at|date:"d M Y" }}
Land Registry Records
{% for land in farmer.land_records.all %}
Parcel: {{ land.parcel_number }}

Ownership: {{ land.get_ownership_type_display }}

Title Deed: {{ land.title_deed_number|default:"N/A" }}

{{ land.area_hectares }} Ha

{% empty %}

No land records registered.

{% endfor %}
Agricultural Holdings ({{ farmer.holdings.count }})
Add Another Holding
{% for holding in farmer.holdings.all %}
{{ holding.get_primary_activity_display }}

{{ holding.location_description|default:"No location provided." }}

{{ holding.size_hectares }} Hectares

{% if holding.crops.exists %}
Crop Production
{% for crop in holding.crops.all %} {% endfor %}
Crop Type Area (Ha) Expected Yield
{{ crop.crop_type }} {{ crop.area_hectares }} {{ crop.expected_yield|default:"-" }} t
{% endif %} {% if holding.livestock.exists %}
Livestock Production
{% for animal in holding.livestock.all %} {{ animal.animal_type }}: {{ animal.count }} {% endfor %}
{% endif %} {% if holding.forestry_items.exists %}
Forestry
    {% for item in holding.forestry_items.all %}
  • {{ item.tree_species }} ({{ item.area_hectares }} Ha) - {{ item.purpose }}
  • {% endfor %}
{% endif %} {% if holding.fisheries.exists %}
Fisheries/Aquaculture
    {% for fish in holding.fisheries.all %}
  • {{ fish.species }} ({{ fish.get_type_display }}) - Capacity: {{ fish.capacity }}
  • {% endfor %}
{% endif %}
{% empty %}

No holdings registered for this farmer.

{% endfor %}
Historical Performance & Indicators
Crop Area {% with total_crop_area=0 %} {% for holding in farmer.holdings.all %} {% for crop in holding.crops.all %} {% endfor %} {% endfor %} {{ farmer.id|default:"0.0" }} Ha {% endwith %}
Livestock Total 0
Input Use N/A
Food Security STABLE

System Analysis:

Detailed production reports are integrated from all modules including Crops, Livestock, Forestry, and Fisheries.

{% endblock %}