{% extends "control_plane/base.html" %} {% block content %}

Task

{{ task.goal }}

{{ task.status }}

Acceptance

{{ task.acceptance_criteria }}

Dependencies

{% for dep in dependencies %}

{{ dep.goal }}

{% empty %}

No dependencies.

{% endfor %}

Attempts

{% for attempt in attempts %}

#{{ attempt.attempt_number }} {{ attempt.status }} {{ attempt.coder.agent.name }} v{{ attempt.coder.version }}

{% empty %}

No attempts.

{% endfor %}

GraphRuns

{% include "control_plane/partials/graph_run_table.html" with graph_runs=graph_runs %}

Tests / Reviews / Commits

{% for test in tests %}

Test: {{ test.status }} {{ test.command }}

{% endfor %}{% for review in reviews %}

Review: {{ review.status }}

{% endfor %}{% for commit in commits %}

Commit {{ commit.sha|slice:":10" }} {{ commit.message }}

{% endfor %}
{% endblock %}