{% extends "main.html" %} {%load static%} {% block content %}

Recent Note:

Send an Email to Salim.

My Tasks

{% for task in my_tasks %} {% for task in my_tasks %}

{{task.name}}

{% if task.status == 'Closed' %}

{{task.status}}

{% endif %} {% if task.status == 'Open' %}

{{task.status}}

{% endif %} {% if task.status == 'Working On' %}

{{task.status}}

{% endif %} {% if task.status == 'Closed' %}

{{task.formatted_start_date}}

{% endif %} {% if task.status == 'Open' %}

{{task.formatted_start_date}}

{% endif %} {% if task.status == 'Working On' %}

{{task.formatted_start_date}}

{% endif %} {% if task.status == 'Closed' %}

{{task.formatted_end_date}}

{% endif %} {% if task.status == 'Open' %}

{{task.formatted_end_date}}

{% endif %} {% if task.status == 'Working On' %}

{{task.formatted_end_date}}

{% endif %}

Project:

{{task.project.name}}

Epic:

{{task.epic.title}}

Assigned To:

{{task.assigned_to.user.first_name}} {{task.assigned_to.user.last_name}}

Files:

Tags:

Extra:

{{task.extra}}

{% endfor %} {% endfor %}

USERS ACTIVITY

{% include 'recent-activities.html' %}
{% endblock content %}