{% extends "base.html" %} {% block title_suffix %} - {{ req.reqname }}{% endblock %} {% block content %}
ID
{{ req.reqid }}
Project
{{ project.prjname }}
Type
{{ TYPE_NAMES.get(req.reqtype, req.reqtype) }}
Phase
{{ PHASE_NAMES.get(req.reqphase, req.reqphase) }}
Status
{{ STATUS_NAMES.get(req.reqstatus, req.reqstatus) }}
Priority
{{ req.reqpriority }}
Code Directory
{{ req.reqcodedir or '-' }}
Plan Path
{{ req.reqplanpath or '-' }}
Test Plan Path
{{ req.reqtestplanpath or '-' }}
Documentation Path
{{ req.reqdocpath or '-' }}
Test Retries
{{ req.reqtestretries or 0 }}
Commit Phase
{% if req.reqcommitenabled == 0 %} Disabled {% elif req.reqcommitenabled == 2 %} Force Enabled {% else %} Use Project/Global Setting {% endif %}
Commit Branch
{{ req.reqcommitbranch or 'Use Project/Global Setting' }}
Last Updated
{{ req.reqtouchts }}

Prompt

{{ req.reqprompt }}
{% if req.reqerror %}

⚠️ Error

{{ req.reqerror }}
{% endif %}

Update Status/Phase

Effective Infrastructure

Merged from project defaults and request overrides.

{% if effective_infrastructure %} {% for inftype, inf in effective_infrastructure.items() %} {% endfor %}
Type Provider Value Source
{{ inf.inftype }} {{ inf.infprovider }} {{ inf.infval or '-' }} {{ inf.source }}
{% else %}

No infrastructure configured.

{% endif %}

Request Infrastructure Overrides

These override project-level infrastructure settings.

{% if request_infrastructure %} {% for inf in request_infrastructure %} {% endfor %}
Type Provider Value Note Actions
{{ inf.inftype }} {{ inf.infprovider }} {{ inf.infval or '-' }} {{ inf.infnote or '-' }}
{% else %}

No request-level overrides.

{% endif %}
Add Override
{% endblock %}