{% extends "base.html" %} {% set active_page = "projects" %} {% block title %}{{ project.title[:40] }}{% endblock %} {% block content %}
| Feature | Dev | QA | Client |
|---|---|---|---|
|
{{ f.name }}
{% if f.description %}
{{ f.description }}
{% endif %}
|
{% if f.dev_confirmed %}
{% endif %}
|
{% if f.qa_confirmed %}
{% endif %}
|
{% if f.client_confirmed %}
{% endif %}
|
| ID | Title | Severity | Status | Assigned |
|---|---|---|---|---|
| {{ bug.bug_id }} | {{ bug.title[:60] }}{% if bug.title|length > 60 %}...{% endif %} | {{ bug.severity }} | {{ bug.status | replace('_', ' ') }} | {{ bug.assigned_to or '—' }} |
| Agent | Input Tokens | Output Tokens | Cost ($) |
|---|---|---|---|
| {{ row.agent_name | replace('_', ' ') | title }} | {{ "{:,}".format(row.input_tokens) }} | {{ "{:,}".format(row.output_tokens) }} | ${{ "%.4f" | format(row.cost) }} |
| Total | {{ "{:,}".format(token_usage | sum(attribute='input_tokens')) }} | {{ "{:,}".format(token_usage | sum(attribute='output_tokens')) }} | ${{ "%.4f" | format(total_token_cost) }} |
{{ project.docker_build_log }}