{# Static card structure. When `task` is provided and truthy, title and meta are filled (server); otherwise empty for template clone / JS fill. .board-card-details is hidden on the small card and shown in the popout. #}
{% if task %}{{ task.title or 'Untitled' }}{% endif %}
{% if task and task.description %}{{ task.description }}{% else %}{% endif %}
{% if task %} {% if task.priority and task.priority != 'LOW' %} {{ task.priority }} {% else %} LOW {% endif %} {% if task.assignee %} {{ task.assignee }} {% else %} None {% endif %} {{ task.comments_count | default(0) }} comment{{ 's' if (task.comments_count | default(0)) != 1 else '' }} {% else %} LOW None 0 comments {% endif %}
Description
{% if task and task.description %}{{ task.description }}{% else %}{% endif %}
Due date
{% if task and task.due_date %}{{ task.due_date }}{% else %}None{% endif %}
Last modified
{% if task and task.updated_at %}{{ task.updated_at }}{% else %}None{% endif %}
Status
{% if task %}{{ task.status or 'TODO' }}{% else %}TODO{% endif %}
Priority
{% if task and task.priority %}{{ task.priority }}{% else %}LOW{% endif %}
Assignee
{% if task and task.assignee %}{{ task.assignee }}{% else %}None{% endif %}
Comments