{% if not tasks %}
{% from "components/ui.html" import empty_state %}
{% set actions %}
Create Your First Task
Learn More
{% endset %}
{% if search or status or priority or project_id or assigned_to %}
{{ empty_state('fas fa-search', 'No Tasks Match Your Filters', 'Try adjusting your filters to see more results. You can clear filters or create a new task that matches your criteria.', actions, type='no-results') }}
{% else %}
{{ empty_state('fas fa-tasks', 'No Tasks Yet', 'Tasks help you break down projects into manageable pieces. Create your first task to get started organizing your work!', actions, type='no-data') }}
{% endif %}
{% endif %}