{% extends 'backend/components/layouts/default.html' %} {% load static %} {% block content %} {% load humanize %} {% if user.is_superuser %}
No. Of Projects
{{project_count}}
Projects
Total registered Projects
No. Of Beneficiaries
{{beneficiaries_count}}
Beneficiaries
Total Beneficiaries
No. Of Stakeholders
{{stakeholders_count}}
Stakeholders
Total Stakeholders
No. Of Activities
{{activities_count}}
Activities
Total Activities
{% include "backend/apps/quicknav.html" %} {% if projects %}
Project
Project Table.
{% for project in projects %} {% empty %} {% endfor %}
Project Title Beneficiaries Stakeholders Activities Challenge and Mitigation Milestones Results
{{ forloop.counter }}. {{ project.title }} {% if project.beneficiaries.all %}
    {% for beneficiary in project.beneficiaries.all %}
  • {{ forloop.counter }} {{ beneficiary.name }}
  • {% endfor %}
{% else %}

No beneficiaries listed

{% endif %}
{% if project.stakeholders.all %}
    {% for stakeholder in project.stakeholders.all %}
  • {{ forloop.counter }} {{ stakeholder.name }}
  • {% endfor %}
{% else %}

No stakeholders listed

{% endif %}
{% if project.activities.all %}
    {% for activity in project.activities.all %}
  • {{ forloop.counter }} {{ activity.name }}
  • {% endfor %}
{% else %}

No activities listed

{% endif %}
{% if project.solution_trees.exists %}
{% for solution in project.solution_trees.all %}

{{ forloop.counter }}. {{ solution.core_problem.name }} {{ solution.identified_solution }}

{% endfor %}
{% else %}

No Challenges and Mitigations

{% endif %}
{% if project.milestones.all %}
    {% for milestone in project.milestones.all %}
  • {{ forloop.counter }} {{ milestone.name }}
  • {% endfor %}
{% else %}

No milestones listed

{% endif %}
{% if project.results.all %}
    {% for result in project.results.all %}
  • {{ forloop.counter }} Result for {{ project.title }}
  • {% endfor %}
{% else %}

No results listed

{% endif %}
No projects found.

Showing {{ projects.paginator.count }} results.

{% if projects.has_previous %} First Previous {% endif %} {% if projects.has_next %} Next Last {% endif %}

{% endif %}
{% include "backend/project/table2.html" %} {% if activities %}
Project activities (Only those linked to a Project are shown)
Project activities Table.
{% for activity in activities %} {% empty %} {% endfor %}
Activity Name Resources Stakeholders Beneficiaries Status Start Date End Date Goals & Objectives Cost Impact
{{ forloop.counter }}. {{ activity.name }} {% if activity.resources.all %}
    {% for resource in activity.resources.all %}
  • {{ resource.name }}
  • {% endfor %}
{% else %}

No resources listed

{% endif %}
{% if activity.stakeholders.all %}
    {% for stakeholder in activity.stakeholders.all %}
  • {{ stakeholder.name }}
  • {% endfor %}
{% else %}

No stakeholders listed

{% endif %}
{% if activity.beneficiaries.all %}
    {% for beneficiary in activity.beneficiaries.all %}
  • {{ beneficiary.name }}
  • {% endfor %}
{% else %}

No beneficiaries listed

{% endif %}
{{ activity.status }} {{ activity.start_date }} {{ activity.end_date }} {{ activity.goals_and_objectives }} {{ activity.cost }} {{ activity.impact }}
No activities found.

Showing {{ activities.paginator.count }} results.

{% if activities.has_previous %} First Previous {% endif %} {% if activities.has_next %} Next Last {% endif %}
{% endif %}
{% if core_problems %}
Project Core Problems (Only those linked to a Project are shown)
Project Core Problems Table.
{% for core_problem in core_problems %} {% empty %} {% endfor %}
Core Problem Name Description Driver Root Causes Effects Impact Assumptions Opportunities Constraints
{{ forloop.counter }}. {{ core_problem.name }} {{ core_problem.description }} {{ core_problem.driver }} {{ core_problem.root_causes }} {{ core_problem.effects }} {{ core_problem.impact }} {{ core_problem.assumption }} {{ core_problem.opportunity }} {{ core_problem.constraints }}
No core problems found.

Showing {{ core_problems.paginator.count }} results.

{% if core_problems.has_previous %} First Previous {% endif %} {% if core_problems.has_next %} Next Last {% endif %}

{% endif %}
{% if solution_trees %}
Project Solution Trees (Only those linked to a Project are shown)
Project Solution Trees Table.
{% for solution_tree in solution_trees %} {% empty %} {% endfor %}
Core Problem Identified Solution Solution Drivers Strategy Inputs Outputs Outcomes Impact Expected Results Stakeholders Beneficiaries
{{ forloop.counter }}. {{ solution_tree.core_problem.name }} {{ solution_tree.identified_solution }} {{ solution_tree.solution_drivers }} {{ solution_tree.strategy }} {{ solution_tree.inputs }} {{ solution_tree.outputs }} {{ solution_tree.outcomes }} {{ solution_tree.impact }} {{ solution_tree.expected_results }} {% if solution_tree.stakeholders.all %}
    {% for stakeholder in solution_tree.stakeholders.all %}
  • {{ stakeholder.name }}
  • {% endfor %}
{% else %}

No stakeholders listed

{% endif %}
{% if solution_tree.beneficiaries.all %}
    {% for beneficiary in solution_tree.beneficiaries.all %}
  • {{ beneficiary.name }}
  • {% endfor %}
{% else %}

No beneficiaries listed

{% endif %}
No solution trees found.

Showing {{ solution_trees.paginator.count }} results.

{% if solution_trees.has_previous %} First Previous {% endif %} {% if projects.has_next %} Next Last {% endif %}

{% endif %}
{% if results %}
Project Results (Only those linked to a Project are shown)
Project Results Table.
{% for result in results %} {% empty %} {% endfor %}
Project Title Output Outcome Results Achieved Evidence of Change Global Contribution Regional Contribution National Contribution Local Level Contribution Gender Inequities Addressed Climate Change Addressed
{{ forloop.counter }}. {{ result.project.title }} {{ result.output }} {{ result.outcome }} {{ result.results_achieved }} {% if result.evidence_of_change.all %}
    {% for indicator in result.evidence_of_change.all %}
  • {{ indicator.name }}
  • {% endfor %}
{% else %}

No evidence of change listed

{% endif %}
{{ result.global_contribution }} {{ result.regional_contribution }} {{ result.national_contribution }} {{ result.local_level_contribution }} {{ result.gender_inequities_addressed }} {{ result.climate_change_addressed }}
No results found.

Showing {{ results.paginator.count }} results.

{% if results.has_previous %} First Previous {% endif %} {% if projects.has_next %} Next Last {% endif %}

{% endif %}
{% if milestones %}
Project Milestones
Project Milestones Table.
{% for milestone in milestones %} {% empty %} {% endfor %}
Milestone Name Description Start Date End Date Project Is Achieved Date of Achievement Cost
{{ forloop.counter }}. {{ milestone.name }} {{ milestone.description }} {{ milestone.start_date }} {{ milestone.end_date }} {{ milestone.project.title }} {{ milestone.is_achieved }} {{ milestone.date_of_achievement }} {{ milestone.cost }}
No milestones found.

Showing {{ milestones.paginator.count }} results.

{% if milestones.has_previous %} First Previous {% endif %} {% if projects.has_next %} Next Last {% endif %}

{% endif %}
{% else %}
YOU ARE NOT ALLOWED HERE! #ERROR: THIS IS ABOVE YOUR PAYCHECK & GRADE
{% endif %} {% endblock %}