{% extends "base.html" %} {% from "components/icon.html" import Icon %} {% from "components/alert.html" import Alert %} {% from "components/text_input.html" import TextInput %} {% block content %}
{% if f.errors %} {{ Alert('There were some errors', message="

Please see below.

", level='error' ) }} {% endif %}

Request #{{ request.id }}

{{ current_status }}
{% with data=data, request_id=request.id %} {% include "requests/_review.html" %} {% endwith %}
{% if request.is_pending_ccpo_action %}
{{ f.csrf_token }}

Review this Request

Message to Requestor (optional)

{{ TextInput( f.comment, label='Approval comments or notes', description='Provide any comments or notes regarding the approval of this request. This message will be shared with the person making the JEDI request..', paragraph=True, noMaxWidth=True ) }}
{{ TextInput( f.comment, label='Revision instructions or notes', paragraph=True, noMaxWidth=True ) }}

Authorizing Officials (optional)

Provide the name of the key officials for both parties that have authorized this request to move forward. This section is not visible to the person making the request. It is only viewable by CCPO staff.


Mission Authorizing Official

{{ TextInput(f.fname_mao, placeholder="First name of mission authorizing official") }}
{{ TextInput(f.lname_mao, placeholder="Last name of mission authorizing official") }}
{{ TextInput(f.email_mao, placeholder="name@mail.mil", validation='email') }}
{{ TextInput(f.phone_mao, placeholder="(123) 456-7890", validation='usPhone') }}

CCPO Authorizing Official

{{ TextInput(f.fname_ccpo, placeholder="First name of CCPO authorizing official") }}
{{ TextInput(f.lname_ccpo, placeholder="Last name of CCPO authorizing official") }}
{{ Icon('x') }} Cancel
{% endif %}

CCPO Activity Log

{% if reviews %}
    {% for review in reviews %}
  1. {{ review.log_name }}

    {{ review.status.log_name }} by {{ review.full_name_reviewer }}

    {% if review.comment %}

    {{ review.comment }}

    {% endif %}
    {% if review.lname_mao %}

    Mission Owner approval on behalf of:

    {{ review.full_name_mao }} {{ review.email_mao }} {{ review.phone_mao }}
    {% endif %} {% if review.lname_ccpo %}

    CCPO approval on behalf of:

    {{ review.full_name_ccpo }}
    {% endif %}
    {% set timestamp=review.status.time_created | formattedDate("%Y-%m-%d %H:%M:%S %Z") %}
  2. {% endfor %}
{% else %}

No CCPO approvals or request changes have been recorded yet.

{% endif %}
{% endblock %}