{% extends "console_page.html" %} {% block console_content %}
View and manage your Gobii tasks.
| Task ID | Created | Status | Prompt | Actions |
|---|---|---|---|---|
| {{ task.id|truncatechars:8 }} | {{ task.created_at|date:"M d, Y" }} {{ task.created_at|time:"H:i" }} | {% if task.status == 'pending' %} Pending {% elif task.status == 'in_progress' %} In Progress {% elif task.status == 'completed' %} Completed {% elif task.status == 'failed' %} Failed {% elif task.status == 'cancelled' %} Cancelled {% endif %} | {{ task.prompt|truncatechars:100 }} | View Details |
|
No tasks found Tasks you create will appear here |
||||