{# Learn how to use Turbo Streams: https://github.com/symfony/ux-turbo#broadcast-doctrine-entities-update #}
{% block create %}
{% endblock %}
{% block update %}
{% if entity.status != "Complete" %}
{{ entity.progress }}%
{% if entity.status == "In Progress" and entity.progress < 100 %}
{% elseif entity.status == "Paused" %}
{% endif %}
{% set delete_button = component('ux:icon', {name: 'ic:twotone-cancel', width: '17.5px', class: 'rounded-full align-middle text-red-600' }) %}
Are you sure you want to delete {{ entity.filename }}?
{% else %}
{% endif %}
{% endblock %}
{% block remove %}
{% endblock %}