{% extends 'base.html' %} {% load static %} {% block title %}{{ collaborator.nome }} - {{ block.super }}{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

{{ collaborator.nome }} {% if collaborator.ativo %} Ativo {% else %} Inativo {% endif %}

{{ collaborator.area.nome }} - {{ collaborator.cargo|default:"Sem cargo definido" }}

Excluir
Informações Pessoais
{% if collaborator.foto %} {{ collaborator.nome }} {% else %}
{% endif %}

{{ collaborator.nome }}

{{ collaborator.cargo|default:"Sem cargo definido" }}

{% if collaborator.telefone %} {% endif %}
Área:
{{ collaborator.area.nome }}
{% if collaborator.data_admissao %}
Data de Admissão:
{{ collaborator.data_admissao|date:"d/m/Y" }}
{% endif %}
Usuário:
{% if collaborator.user %} {{ collaborator.user.username }} {% if collaborator.user.is_active %} Ativo {% else %} Inativo {% endif %} {% else %} Sem usuário associado {% endif %}
Status:
{% if collaborator.ativo %} Ativo {% else %} Inativo {% endif %}

{{ collaborator.total_projects|default:"0" }}

Projetos

{{ collaborator.total_tasks|default:"0" }}

Tarefas

{{ collaborator.tasks_concluidas|default:"0" }}

Concluídas

Projetos Recentes
Ver Todos
{% if collaborator.projects.all %}
{% for project in collaborator.projects.all|slice:":5" %} {% endfor %}
Projeto Workspace Status Progresso Ações
{{ project.nome }} {{ project.workspace.nome }} {{ project.get_status_display }}
{{ project.progresso }}%
{% else %}
Nenhum projeto encontrado

Este colaborador ainda não foi atribuído a nenhum projeto.

{% endif %}
Tarefas Recentes
Ver Todas
{% if collaborator.tasks.all %}
{% for task in collaborator.tasks.all|slice:":5" %} {% endfor %}
Tarefa Projeto Status Prioridade Ações
{{ task.titulo }} {% if task.project %} {{ task.project.nome }} {% else %} - {% endif %} {{ task.get_status_display }} {{ task.get_prioridade_display }}
{% else %}
Nenhuma tarefa encontrada

Este colaborador ainda não foi atribuído a nenhuma tarefa.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}