{% for entry in data %}
{% set class = '' %}
{% set rowClass = '' %}
{% set tooltip = null %}
{% if entry.end is not null %}
{% set tooltip = entry.end|date_full %}
{% set class = ' text-success' %}
{% set rowClass = ' success' %}
{% if entry.overdue %}
{% set class = ' text-danger' %}
{% set rowClass = ' danger' %}
{% endif %}
{% endif %}
{#
DOESN'T work with Kimai 1.7
#}
{{ entry.title }}
{% set duration = entry.duration %}
{% if duration is not null %}
{{ entry.duration|duration }}
{% endif %}
{% if is_granted('task_edit', entry) %}
{% endif %}
{% if is_granted('task_assign', entry) %}
{% endif %}
{% if is_granted('task_delete', entry) %}
{% endif %}
{% endfor %}
{% if not app.request.xmlHttpRequest %}
{% endif %}