{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}
{% if page == 'dashboard' %}
Dashboard
Projects
{{ stats.projects }}Requests
{{ stats.requests }}Pending
{{ stats.pending }}In Progress
{{ stats.in_progress }}Done
{{ stats.done }}Errors
{{ stats.errors }}
Recent Requests
{% if recent_requests %}
| ID | Project | Name | Phase | Status |
|---|---|---|---|---|
| {{ r.reqid }} | {{ r.prjname }} | {{ r.reqname }} | {{ PHASE_NAMES.get(r.reqphase, r.reqphase) }} | {{ STATUS_NAMES.get(r.reqstatus, r.reqstatus) }} |
No requests yet. Create one
{% endif %}