HH/templates/projects/partials/phase_task_list.html
ismail c5f76b3855
Some checks are pending
Build and Push Docker Image / build (push) Waiting to run
updates
2026-05-11 14:45:30 +03:00

12 lines
493 B
HTML

{% load i18n %}
<div class="space-y-2" id="phase-tasks-{{ phase_type }}-{{ phase_key }}">
{% for task in tasks %}
{% include "projects/partials/task_row.html" with task=task project=project can_edit=can_edit today=today %}
{% empty %}
<div class="text-center py-6 text-slate-400">
<i data-lucide="check-square" class="w-8 h-8 mx-auto mb-2 opacity-50"></i>
<p class="text-xs">{% trans "No tasks yet" %}</p>
</div>
{% endfor %}
</div>