{% extends "layout.html" %}
{% block content %}
Gumo Task Emulator UI: {{queue_name}}
Back to dashboard
Key Name |
State |
Relative URI |
Scheduled At |
Attempts |
Run at |
Action |
{% for task in tasks %}
{{task.key.name()}} |
{{task.state.value}} |
{{task.relative_uri}} |
{{task.schedule_time}} |
{{task.attempts}} |
{{task.run_at}} |
Detail
Retry
Mark As Failed
|
{% if task.histories %}
Process Started At |
Status Code |
Response Body |
{% for history in task.histories %}
{{history.started_at}} |
{{history.status_code}} |
{{history.response_body}} |
{% endfor %}
|
{% endif %}
{% endfor %}
{% endblock %}