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

Recent Note:

Send an Email to Salim.

{% if project.status == 'Completed' %}

{{project.name}}

{{project.project_id}}

{% endif %} {% if project.status == 'Cancelled' %}

{{project.name}}

{{project.project_id}}

{% endif %} {% if project.status == 'Active' %}

{{project.name}}

{{project.project_id}}

{% endif %} {% if project.status == 'Pending' %}

{{project.name}}

{{project.project_id}}

{% endif %}

Client: {{project.customer.first_name}} {{project.customer.last_name}}

Project Manager: {{project.manager.first_name}} {{project.manager.last_name}}

Member(s): {% for member in project.members.all %} {{member.first_name}} {{member.last_name}} {% if not forloop.last %}, {% endif %} {% endfor %}

Type: {% for type in project.project_type.all %} {{type.name}} {% if not forloop.last %}, {% endif %} {% endfor %}

Status: {% if project.status == 'Cancelled' %} {{project.status}} {% endif %} {% if project.status == 'Completed' %} {{project.status}} {% endif %} {% if project.status == 'Active' %} {{project.status}} {% endif %} {% if project.status == 'Pending' %} {{project.status}} {% endif %}

Start Date: {{project.start_date}}

End Date: {{project.end_date}}

Requirements:

    {% for requirement in project.projectrequirement_set.all %}
  • {{requirement.content}}
  • {% endfor %}
{% if project.projectfile_set.all %}

Related Files:

File Name

File

Date Entered

{% for file in project.projectfile_set.all %}

{{file.name}}

{{file.file}}

{{file.date}}

{%endfor%}
{%endif%} {% if project.projectcredential_set.all %}

Credentials:

Email or Username

Password

Used for

{% for credential in project.projectcredential_set.all %}

{{credential.emailorusername}}

{{credential.password}}

{{credential.usedfor}}

{% endfor %}
{%endif%}

Tags:

Total Extra Task Time : 46 hrs and 50 min

Total Task Time : 240 hrs and 40 min

USERS ACTIVITY

user profile

Nataly

11:30 AM

Closed - Create the Osina home page

user profile

Salim

11:30 AM

Closed - Create the Osina home page

user profile

Emile

11:30 AM

Closed - Create the Osina home page

user profile

Nataly

11:30 AM

Closed - Create the Osina home page

{% endblock content %}