{% extends "base.html" %} {% block title %}{{ task.name }} - QuickScheduler{% endblock %} {% block content %}

{{ task.name }}

Task Details
Task ID
{{ task.hash_id }}
Description
{{ task.description or "No description provided" }}
Command
{{ task.command }}
Callable
{{ task.callable_func }}
Working Directory
{{ task.working_directory }}
Schedule Type
{{ task.schedule_type }}
Schedule Config
{{ task.schedule_config | tojson(indent=2) }}
Timeout
{{ task.timeout or "No timeout" }} seconds
Status
{{ 'Enabled' if task.status == 'active' else 'Disabled' }}
Created At
{{ task.created_at or "NA" }}
Updated At
{{ task.updated_at or "NA" }}
Quick Actions
View Job History
{% endblock %}