{% extends "base.html" %} {% block title_suffix %} - {{ project.prjname }}{% endblock %} {% block content %}
ID
{{ project.prjid }}
Version
{{ project.prjversion }}
Priority
{{ project.prjpriority }}
Phase
{{ project.prjphase }}
Code Directory
{{ project.prjcodedir or '-' }}
Description
{{ project.prjdesc or '-' }}
Last Updated
{{ project.prjtouchts }}

Infrastructure

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

No infrastructure configured.

{% endif %}
Add Infrastructure

Requests ({{ requests|length }})

{% if requests %} {% for r in requests %} {% endfor %}
ID Name Type Phase Status Priority
{{ r.reqid }} {{ r.reqname }} {{ TYPE_NAMES.get(r.reqtype, r.reqtype) }} {{ PHASE_NAMES.get(r.reqphase, r.reqphase) }} {{ STATUS_NAMES.get(r.reqstatus, r.reqstatus) }} {{ r.reqpriority }}
{% else %}

No requests yet. Create one

{% endif %}
{% endblock %}