{% 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.due_date %}마감 {{ p.due_date }}{% endif %} {% if p.task_total %}업무 {{ p.task_done }}/{{ p.task_total }}{% endif %}
{% if p.task_total %}
{% endif %}
{% if is_admin %} {% endif %} {% if p.task_preview %} {% if p.task_more %} +{{ p.task_more }}개 업무 더보기 {% endif %} {% elif p.task_total == 0 %}
진행 중인 업무가 없습니다.
{% endif %}
{% endmacro %}

진행중인 프로젝트

notifications {% if is_admin %} {% endif %}
{% if not active_projects and not done_projects %}
아직 프로젝트가 없습니다. {% if is_admin %}상단의 새 프로젝트 버튼으로 만들어 보세요. {% else %}관리자가 프로젝트에 배정하면 여기에 표시됩니다.{% endif %}
{% 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 %}
{% if is_admin %} {% endif %} {% endblock %}