12 lines
493 B
HTML
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>
|