{% extends 'base.html' %} {% load static %} {% load kunj_filters %} {% block body %}
{% include 'navbar.html' %}
{% include 'header.html' %}

{{ project.project }}

{{ project.program_type.program_type }}
Collect Data View Beneficiaries ← Back to Projects
Project Info
Program Type
{{ project.program_type.program_type }}
Location
{{ project.location|default:"Not set" }}{% if locations %} ({{ locations|join:", " }} — from beneficiary records){% endif %}
Start Date
{{ project.start_date|ddmmyyyy|default:"Not set" }}
End Date
{{ project.end_date|ddmmyyyy|default:"Not set" }}
Beneficiaries
{{ beneficiary_count }}
Created
{{ project.created_at|ddmmyyyy }}
Team on this Project
{% if team_members %} {% for member in team_members %} {{ member.name }} {% endfor %} {% else %}
No team member linked to this project yet.
{% endif %}
Targets
{% if targets %}
{% if user.user_type.user_permission.program_department_program_edit == 1 %} {% endif %} {% for t in targets %} {% if user.user_type.user_permission.program_department_program_edit == 1 %} {% endif %} {% endfor %}
Description Target Achieved ProgressUpdate
{{ t.description }} {{ t.number }} {{ t.achieved }}
{{ t.percent }}%
{% csrf_token %}
{% else %}
No targets set for this project yet.
{% endif %}
Follow-up Status
Pending
{{ followup_counts.pending }}
Completed
{{ followup_counts.completed }}
Missed
{{ followup_counts.missed }}
What Happened (Activity Breakdown)
{% if activity_breakdown %} {% for row in activity_breakdown %} {% endfor %}
CategoryCount
{{ row.category }}{{ row.count }}
{% else %}
No category data recorded yet.
{% endif %}
Where Work Happened (State / District / Village)
{% if location_breakdown %}
{% for row in location_breakdown %} {% endfor %}
StateDistrictVillage / AreaBeneficiaries
{{ row.state__state|default:"—" }} {{ row.district__district|default:"—" }} {{ row.area|default:"—" }} {{ row.count }}
{% else %}
No beneficiary location data yet.
{% endif %}
{% if custom_field_breakdown %}
Project-specific Data Breakdown
{% for field in custom_field_breakdown %}
{{ field.label }}
{% for option, count in field.counts.items %}
{{ option }}
{{ count }}
{% endfor %}
{% endfor %}
{% endif %}
Donors
{% if incomes %}
{% for income in incomes %} {% endfor %}
Donor Income Type Sanctioned Received Payment Date
{{ income.donor }} {{ income.income_type }} ₹ {{ income.sanction_amount }} ₹ {{ income.received_amount }} {{ income.payment_date|ddmmyyyy }}
{% else %}
No donor / income record for this project yet.
{% endif %}
{% endblock %}