{% extends "base.html" %} {% block title %}{{ _('Bulk Time Entry') }} - {{ app_name }}{% endblock %} {% block content %} {% block extra_css %} {% endblock %}
{% from "_components.html" import page_header %}
{% set actions %} {{ _('Back') }} {{ _('Single Entry') }} {% endset %} {{ page_header('fas fa-calendar-plus', _('Bulk Time Entry'), _('Create multiple time entries for consecutive days'), actions) }}
{{ _('Bulk Entry Form') }}
{{ _('Select the project to log time for') }}
{% set preselected_task_id = request.form.get('task_id') or selected_task_id %}
{{ _('Tasks load after selecting a project') }}
{{ _('Date Range') }} *
{{ _('Start Time') }} *
{{ _('Same start time for all days') }}
{{ _('End Time') }} *
{{ _('Same end time for all days') }}
{{ _('Separate tags with commas (same for all entries)') }}
{{ _('Include in invoices') }}
{{ _('Back') }}
{{ _('Bulk Entry Tips') }}
{{ _('Date Range') }}

{{ _('Select start and end dates. Entries will be created for each day in the range.') }}

{{ _('Skip Weekends') }}

{{ _('Enable to automatically skip Saturdays and Sundays from the date range.') }}

{{ _('Same Time Daily') }}

{{ _('All entries will use the same start and end time each day.') }}

{{ _('Conflict Check') }}

{{ _('System will check for existing time entries and prevent overlaps.') }}

{% endblock %}