{% extends "base.html" %} {% from "components/client_select.html" import client_select %} {% block content %}

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

Back to Reports

{{ _('Use the filters below to customize your export. Choose CSV or Excel format. All filters are optional - leave blank to include all entries within the date range.') }}

Date Range


Filters

{% if current_user.is_admin %}
{% endif %}
{{ client_select('client_id', clients, selected_id=request.args.get('client_id')|int, required=False, only_one_client=only_one_client|default(false), single_client=single_client) }}

Enter tags separated by commas. Entries matching any of the tags will be included.


Export Preview

{{ _('CSV / Excel') }}

ID, User, Project, Client, Task, Start Time, End Time, Duration (hours), Duration (formatted), Notes, Tags, Source, Billable, Created At, Updated At

{{ _('The file will be downloaded with a filename indicating the date range and applied filters.') }}

{% endblock %}