Project Title
{{ project.title }}
Project Description
{{ project.description|linebreaksbr }}
Key Funding Metrics
Funding Goal
{{ formatted_funding_goal }}
Total Raised
{{ formatted_current_amount }}
Tiles Required to Goal
{{ total_required_tiles }}
Funding Status
{{ funding_status_text }}
Project Summary
Funding Started:
{{ project.started_at|date:"d-m-Y H:i:s" }}
Funding Closed:
{{ project.closed_by|date:"d-m-Y H:i:s"|default:"Active" }}
Unit Tile Value:
{{ formatted_tile_value }}
Associated Details
Beneficiary Details
Name:
{{ project.beneficiary.first_name }} {{ project.beneficiary.last_name }}
Age:
{{ project.beneficiary.age|default:'N/A' }}
Phone:
{{ project.beneficiary.phone_number|default:"N/A" }}
Address:
{{ project.beneficiary.address }}
Institution Bank Details
{% with inst_bank=project.created_by.default_bank %}
Acc Holder:
{{ inst_bank.account_holder_first_name }} {{ inst_bank.account_holder_last_name }}
Bank Name:
{{ inst_bank.bank_name }}
IFSC Code:
{{ inst_bank.ifsc_code|default:"N/A" }}
Account No:
{{ inst_bank.account_no }}
{% endwith %}
Report Approved by:
{{ request_user.first_name }} {{ request_user.last_name }}
Report Generated:
Loading...
Progress Updates for: {{ project.title }}
{% comment %}
Assuming 'project_updates_list' is passed in context,
or using the reverse relationship 'project.updates.all'
{% endcomment %}
{% with project_updates_list=project.updates.all %}
{% if project_updates_list %}
{% for update in project_updates_list %}
{{ update.update_date|date:"d-m-Y H:i:s" }}
{{ update.update_title }}
{{ update.update|linebreaksbr }}
{% endfor %}
{% else %}
**No Project Updates Available.**
{% endif %}
{% endwith %}
Visual Documentation for: {{ project.title }}
{% if project_images_list %}
{% for item in project_images_list %}
{% if forloop.counter0|divisibleby:2 %}
{% endif %}
{{ item.caption|default:"Project Image" }}
|
{% if not forloop.counter0|divisibleby:2 or forloop.last %}
{% endif %}
{% endfor %}
{% else %}
**No Project Images Available.**
{% endif %}
Verified Transactions for: {{ project.title }}
{% if transactions_list %}
| Sl.No |
Donor Name |
Tracking ID |
Date & Time |
Tiles Qty |
Amount ({{ rupee }}) |
{% for txn in transactions_list %}
| {{ txn.sl_no }} |
{{ txn.donor_name }} |
{{ txn.tracking_id }} |
{{ txn.time|date:"d-m-Y H:i:s" }} |
{{ txn.num_tiles }} |
{{ txn.formatted_amount }} |
{% endfor %}
{% else %}
**No Transactions Found for this Project.**
{% endif %}