{% else %}
{% from "components/ui.html" import empty_state %}
{% set actions %}
{% if current_user.is_admin or has_permission('create_quotes') %}
{{ _('Create Your First Quote') }}
{% endif %}
{{ _('Learn More') }}
{% endset %}
{% if search or status != 'all' %}
{{ empty_state('fas fa-search', 'No Quotes Match Your Filters', 'Try adjusting your filters to see more results. You can clear filters or create a new quote that matches your criteria.', actions, type='no-results') }}
{% else %}
{{ empty_state('fas fa-file-contract', 'No Quotes Yet', 'Quotes help you manage client proposals and track acceptance rates. Create your first quote to get started!', actions, type='no-data') }}
{% endif %}
{% endif %}