{% extends "erp_base.html" %} {% block head_extra %} {% endblock %} {% block content %}
{% macro project_card(p) %}
{{ p.name }} {% if p.status == 'completed' %}완료{% endif %}
{% if p.description %}
{{ p.description }}
{% endif %} {% if p.members %}
{% for m in p.members %} {% if m.avatar %} {% else %}account_circle{% endif %} {{ m.name }} {% endfor %}
{% endif %}
{% if p.due_date %}마감 {{ p.due_label }}{% endif %} {% if p.task_total %}업무 {{ p.task_done }}/{{ p.task_total }}{% endif %}
{% if p.task_total %}
{% endif %}
{% if p.can_add_task %} {% endif %} {% if p.can_add_task %} {% endif %}
{% if p.task_preview %} {% if p.task_more %} +{{ p.task_more }}개 업무 더보기 {% endif %} {% elif p.task_total == 0 %}
진행 중인 업무가 없습니다.
{% endif %}
{% endmacro %}

진행중인 프로젝트

notifications
{% if not active_projects and not done_projects %}
아직 프로젝트가 없습니다. 상단의 새 프로젝트 버튼으로 만들어 보세요.
{% elif not active_projects %}
진행중인 프로젝트가 없습니다.
{% endif %}
{% for p in active_projects %}{{ project_card(p) }}{% endfor %}
{% if done_projects %}

완료 프로젝트

{% for p in done_projects %}{{ project_card(p) }}{% endfor %}
{% endif %}
{% endblock %}