{% load static %} {% load humanize %} Task Page
{% include 'task/main-nav.html' %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if tasks %}

Welcome {{request.user.profile.username}}!

It's {{weekday}}, {{day}} {{month}}. You've [{{task_num}}] task(s) coming up in the next days.

{% else %} {% endif %}
{% for task in tasks %}
logo

{{task.title}}

Edit Task edit_icon
task_iconsDate Created:
{{task.created_time_stamp|date}}
task_iconsStatus:
{{task.status}}
task_iconsTag:
{{task.tag}}
{% if task.number_of_notes > 0%}
task_iconsComment:
[{{task.number_of_notes}}]
{% endif %}
task_iconsLast Updated:
{{task.updated_time_stamp|naturaltime}}

Task Description

{{task.task_description}}

{% endfor %}