154 lines
4.9 KiB
HTML
154 lines
4.9 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% from "components/alert.html" import Alert %}
|
|
{% from "components/modal.html" import Modal %}
|
|
{% from "components/empty_state.html" import EmptyState %}
|
|
|
|
{% block content %}
|
|
|
|
{% call Modal(name='pendingFinancialVerification', dismissable=True) %}
|
|
<h1>Request submitted!</h1>
|
|
|
|
{% include 'fragments/pending_financial_verification.html' %}
|
|
|
|
<div class='action-group'>
|
|
<a v-on:click="closeModal('pendingFinancialVerification')" class='action-group__action usa-button'>Close</a>
|
|
</div>
|
|
{% endcall %}
|
|
|
|
{% call Modal(name='pendingCCPOApproval', dismissable=True) %}
|
|
|
|
{% include 'fragments/pending_ccpo_approval_modal.html' %}
|
|
|
|
<div class='action-group'>
|
|
<a v-on:click="closeModal('pendingCCPOApproval')" class='action-group__action usa-button'>Close</a>
|
|
</div>
|
|
{% endcall %}
|
|
|
|
{% if num_action_required %}
|
|
{% set title -%}
|
|
Action required on {{ num_action_required }} requests.
|
|
{%- endset %}
|
|
|
|
{{ Alert (title)}}
|
|
{% endif %}
|
|
|
|
{% if not requests %}
|
|
|
|
{{ EmptyState(
|
|
'You currently have no JEDI Cloud workspaces.',
|
|
sub_message='A JEDI Cloud Workspace is where you manage your projects and control user access to those projects.',
|
|
action_label='Create a new JEDI Cloud Request',
|
|
action_href=url_for('requests.requests_form_new', screen=1),
|
|
icon='document'
|
|
) }}
|
|
|
|
{% else %}
|
|
|
|
{% if pending_financial_verification %}
|
|
|
|
{{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }}
|
|
|
|
{% endif %}
|
|
|
|
{% if pending_ccpo_approval %}
|
|
|
|
{{ Alert('Request submitted. Approval pending.', fragment="fragments/pending_ccpo_approval_alert.html") }}
|
|
|
|
{% endif %}
|
|
|
|
{% if extended_view %}
|
|
<div class="row kpi">
|
|
<div class="kpi__item col col--grow">
|
|
<div class="kpi__item__value">{{ kpi_inprogress }}</div>
|
|
<div class="kpi__item__description">Requests in progress</div>
|
|
</div>
|
|
<div class="kpi__item col col--grow">
|
|
<div class="kpi__item__value">{{ kpi_pending }}</div>
|
|
<div class="kpi__item__description">Pending CCPO Action</div>
|
|
</div>
|
|
<div class="kpi__item col col--grow">
|
|
<div class="kpi__item__value">{{ kpi_completed }}</div>
|
|
<div class="kpi__item__description">Approved Requests</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="col col--grow">
|
|
|
|
{% if extended_view %}
|
|
<form class='search-bar'>
|
|
<div class='usa-input search-input'>
|
|
<label for='requests-search'>Search requests by Order ID</label>
|
|
<input type='search' id='requests-search' name='requests-search' placeholder="Search by Order ID"/>
|
|
<button type="submit">
|
|
<span class="hide">Search</span>
|
|
</button>
|
|
</div>
|
|
|
|
<div class='usa-input'>
|
|
<label for='filter-status'>Filter requests by status</label>
|
|
<select id="filter-status" name="filter-status">
|
|
<option value="" selected disabled>Filter by status</option>
|
|
<option value="">Active</option>
|
|
<option value="">Pending</option>
|
|
<option value="">Denied</option>
|
|
</select>
|
|
</div>
|
|
</form>
|
|
{% endif %}
|
|
|
|
<div class='responsive-table-wrapper'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">JEDI Cloud Request ID</th>
|
|
<th scope="col">Date Request Submitted</th>
|
|
{% if extended_view %}
|
|
<th scope="col">Date Request Last Edited</th>
|
|
<th scope="col">Requester</th>
|
|
{% endif %}
|
|
<th scope="col">Projected Annual Usage ($)</th>
|
|
<th scope="col">Request Status</th>
|
|
{% if extended_view %}
|
|
<th scope="col">DOD Component</th>
|
|
{% endif %}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for r in requests %}
|
|
<tr>
|
|
<th scope="row">
|
|
<a class='icon-link icon-link--large' href="{{ r.edit_link }}">{{ r.order_id }}</a>
|
|
{% if r.action_required %}<span class="label label--info">Action Required</span>{% endif %}
|
|
</th>
|
|
<td>{{ r.last_submission_timestamp | formattedDate }}</td>
|
|
{% if extended_view %}
|
|
<td>{{ r.last_edited_timestamp | formattedDate }}</td>
|
|
<td>{{ r.full_name }}</td>
|
|
{% endif %}
|
|
<td>{{ r.annual_usage | dollars }}</td>
|
|
<td>
|
|
{% if r.status == 'Approved' %}
|
|
<a class="icon-link icon-link--large" href="{{ url_for('workspaces.workspace_projects', workspace_id=r.workspace_id) }}">
|
|
{{ r.status }}
|
|
</a>
|
|
{% else %}
|
|
{{ r.status }}
|
|
{% endif %}
|
|
</td>
|
|
{% if extended_view %}
|
|
<td>{{ r.dod_component }}</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|