{% 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 pending_review %}
{{ f.csrf_token }}

Approval Notes

Instructions for the Requestor

Provide instructions or notes for additional information that is necessary to approve the request here. The requestor may then re-submit the updated request or initiate contact outside of AT-AT if further discussion is required. These notes will be visible to the person making the JEDI request. {{ TextInput(f.comment, paragraph=True, placeholder="Add notes or comments explaining what changes are being requested or why further discussion is needed about this request.") }}

Authorizing Officials

This section is not visible to the person making the request. It is only viewable by CCPO staff.

Provide the name of the key officials for both parties that have authorized this request to move forward.

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") }}
{{ 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 Internal Notes

You may add additional comments and notes for internal CCPO reference and follow-up here.

{{ internal_comment_form.csrf_token }} {{ TextInput(internal_comment_form.text, paragraph=True) }}

Approval Log

    {% for status_event in status_events %} {% if status_event.review %}
  1. {{ status_event.log_name }} by {{ status_event.review.full_name_reviewer }}

    {% if status_event.review.comment %}

    {{ status_event.review.comment }}

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

    Mission Owner approval on behalf of:

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

    CCPO approval on behalf of:

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