{% extends "console_page.html" %} {% block console_content %}

Tasks

View and manage your Gobii tasks.

{% for task in tasks %} {% empty %} {% endfor %}
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

{% if tasks.has_other_pages %}
{% if tasks.has_previous %} Previous {% endif %} {% if tasks.has_next %} Next {% endif %}
{% endif %}
{% endblock %}