{% extends 'base.html' %} {% block page_title %}Workplans — {{ project.name }}{% endblock %} {% block content %}
Programs Dashboard

{{ project.name }}

{{ workplans|length }} workplan{{ 's' if workplans|length != 1 }} {% if project.donor %} · {{ project.donor }}{% endif %}

New Workplan
{% if workplans %}
{% for w in workplans %}
{{ w.status.title() }} {{ w.period or '' }}
{{ w.title }}
{% if w.start_date %}{{ w.start_date|format_date }} → {{ w.end_date|format_date if w.end_date else 'Ongoing' }}{% endif %}
Progress {{ w.avg_progress }}%
{{ w.completed_items }}/{{ w.item_count }} items {{ w.total_budget|format_currency }} MWK
{% endfor %}
{% else %}

No workplans yet for this project

Create a workplan to start planning activities and tracking budgets

Create First Workplan
{% endif %} {% endblock %}