{% extends 'admin-dashboard.html' %} {% load humanize %} {% block content %}

Project Reports

Filter Projects
Search Criteria
Sorting Options
Clear Filters
{% for p in project %} {% empty %} {% endfor %}
# Project Title Beneficiary Success Date Goal Total Tiles Transactions Actions
{{ forloop.counter }} {{ p.title }} {{ p.beneficiary.first_name }} {{ p.beneficiary.last_name }} {{ p.closed_by|date:"d M, Y" }} ₹{{ p.funding_goal|floatformat:2|intcomma }} {{ p.tiles }} tiles {{ p.tra }} {% if p not in reports %} {% endif %} {% for r in reports %} {% if r.project.id == p.id %} {% comment %} Note: Since 'break' is illegal, this link will render once for every report found. We assume one report per project. {% endcomment %} {% endif %} {% endfor %}
{% endblock %}