{% if page.cards.done.size > 0 %}

Completed

A list of work packages we've fully wrapped up this month. Expand any to find out more about its conclusion.

{% for card in page.cards.done %} {% include project_tablecard.html state = 'done' %} {% endfor %}
{% endif %} {% if page.cards.in_progress.size > 0 %}

In Progress

Expand any work package to find out more about its progress, obstacles and sub-achievements.

{% for card in page.cards.in_progress %} {% include project_tablecard.html state = 'in_progress' %} {% endfor %}
{% endif %} {% if page.cards.discarded.size > 0 %}

Discarded

Work packages we for one reason or the other decided to discard. Click on a package to find out the exact reasons why.

{% for card in page.cards.discarded %} {% include project_tablecard.html state = 'discarded' %} {% endfor %}
{% endif %} {% if page.cards.postponed.size > 0 %}

Postponed

Work packages we for one reason or the other decided to postpone. Click on a package to find out the exact reasons why.

{% for card in page.cards.postponed %} {% include project_tablecard.html state = 'postponed' %} {% endfor %}
{% endif %}