{# Dashboard widget: Recent time entries #}

{{ _('Recent Time Entries') }}

{{ _('View All') }}
{% if recent_time_entries %}
{% for entry in recent_time_entries[:10] %} {% endfor %}
{{ _('Date') }} {{ _('Project') }} {{ _('User') }} {{ _('Duration') }} {{ _('Description') }}
{{ entry.start_time|user_date }}
{{ entry.start_time|user_date }}
{{ entry.project.name if entry.project else _('N/A') }}
{{ entry.user.display_name if entry.user else _('N/A') }}
{{ "%.2f"|format(entry.duration_hours) }}h

{{ entry.description[:50] if entry.description else '-' }}{% if entry.description and entry.description|length > 50 %}...{% endif %}

{% else %}

{{ _('No time entries found') }}

{{ _('Time entries will appear here once they are logged') }}

{% endif %}