{% extends "base.html" %} {% from "components/icon.html" import Icon %} {% from "components/alert.html" import Alert %} {% from "components/text_input.html" import TextInput %} {% block content %}
{{ f.csrf_token }}

Request #{{ request_id }}

{{ status }}
{% with data=data, request_id=request_id %} {% include "requests/_review.html" %} {% endwith %}
{% if pending_review %}

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.comments, 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") }}

CCPO Internal Notes

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

{{ Icon('x') }} Cancel
{% endif %}

Approval Log

  1. Denied by Darth Vader

    "You have failed me for the last time, Admiral. Captain Piett. Yes, my lord. Make ready to land out troops beyond the energy shield and deploy the fleet so that nothing gets off that system."

    Mission Owner approval on behalf of:

    Grand Moff Tarkin tarkin@empire.mil (234) 567-8901

    CCPO approval on behalf of:

    Emperor Palpatine palpatine@empire.mil (345) 678-9012
  2. Denied by Darth Vader

    "You have failed me for the last time, Admiral. Captain Piett. Yes, my lord. Make ready to land out troops beyond the energy shield and deploy the fleet so that nothing gets off that system."

    Mission Owner approval on behalf of:

    Grand Moff Tarkin tarkin@empire.mil (234) 567-8901

    CCPO approval on behalf of:

    Emperor Palpatine palpatine@empire.mil (345) 678-9012
{% endblock %}