{% extends "base.html" %}
{% block body %}
{% include "partials/header.html" %}
{% for c in categories %}
{% set cp = projects_by_cat[c.id] %}
{% set total_tasks = cp | sum(attribute="total") %}
{% set total_done = cp | sum(attribute="done") %}
{% set agg_actual = aggregate_burndown(cp) %}