{% extends "base.html" %} {% block title %}{{ _('Create Task') }} - Time Tracker{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ _('Create Task') }}

{{ _('Add a new task to your project to break down work into manageable components') }}

{{ _('Back to Tasks') }}

{{ _('Choose a clear, descriptive name that explains what needs to be done') }}

{{ _('Supports Markdown') }}

{{ _('Optional: Add context, requirements, or specific instructions for the task') }}

{{ _('Select the project this task belongs to') }}

{{ _('Preview') }}: {% if request.form.get('priority') == 'low' %}{{ _('Low') }}{% elif request.form.get('priority') == 'high' %}{{ _('High') }}{% elif request.form.get('priority') == 'urgent' %}{{ _('Urgent') }}{% else %}{{ _('Medium') }}{% endif %} {% if request.form.get('status') == 'in_progress' %}{{ _('In Progress') }}{% elif request.form.get('status') == 'review' %}{{ _('Review') }}{% elif request.form.get('status') == 'done' %}{{ _('Done') }}{% elif request.form.get('status') == 'cancelled' %}{{ _('Cancelled') }}{% else %}{{ _('To Do') }}{% endif %}

{{ _('Optional: Set a deadline for this task') }}

{{ _('Optional: Estimate how long this task will take') }}

{{ _('Optional: Assign this task to a team member') }}

{{ _('Cancel') }}

{{ _('Task Creation Tips') }}

  • {{ _('Clear Naming') }} {{ _('Use action verbs and be specific about what needs to be done') }}
  • {{ _('Realistic Estimates') }} {{ _('Consider complexity and dependencies when estimating time') }}
  • {{ _('Set Deadlines') }} {{ _('Due dates help prioritize work and track progress') }}
  • {{ _('Priority Matters') }} {{ _("Use priority levels to help team members focus on what's most important") }}
{% endblock %}