to-do
{% for postit in postits %}
{% if postit.status == 'to-do' %}
{{ postit.title }}
{{ postit.description }}
to: {{postit.user_to}}
from {{postit.user_from}}
{% endif %}
{% endfor %}
doing
{% for postit in postits %}
{% if postit.status == 'doing' %}
{{ postit.title }}
{{ postit.description }}
to: {{postit.user_to}}
from {{postit.user_from}}
{% endif %}
{% endfor %}
done
{% for postit in postits %}
{% if postit.status == 'done' %}
{{ postit.title }}
{{ postit.description }}
to: {{postit.user_to}}
from {{postit.user_from}}
{% endif %}
{% endfor %}
{% else %}