atst/templates/help/index.html
2018-10-03 13:55:00 -04:00

121 lines
5.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base_public.html" %}
{% from "components/sidenav_item.html" import SidenavItem %}
{% from "components/alert.html" import Alert %}
{% block title %}Help | JEDI Cloud{% endblock %}
{% block content %}
<div class='global-layout'>
<div class='global-navigation sidenav'>
<ul>
{{ SidenavItem("Getting Started",
href="/help",
active=g.matchesPath('/help'),
subnav=[
{"label":"Financial Verification", "href":"/help", "active": False},
{"label":"Sub Topic", "href":"/help", "active": False},
{"label":"Another Sub Topic", "href":"/help", "active": False},
]
)}}
{{ SidenavItem("Another Help Topic",
href="/help",
active=False
)}}
{{ SidenavItem("One More Help Topic",
href="/help",
active=False
)}}
</ul>
</div>
<div class='global-panel-container'>
{{ Alert('Sample Content',
message='This is a sample help page intended to demonstrate the layout of a JEDI Cloud help documentation page.',
) }}
<div class='panel'>
<div class='panel__heading panel__heading--divider'>
<h1>
<div class='h4'>
JEDI Cloud Help Documentation
</div>
<span class='h1'>
Getting Started
</span>
</h1>
</div>
<div class='panel__content'>
<h2>Financial Verification</h2>
<h3>How to prepare for Financial Verification step?</h3>
<p>Once your request is approved, the next step is to create a Task Order (T.O.) associated with the JEDI Cloud ID/IQ. Please contact a Contracting Officer (KO) or Contracting Officer Representative (COR) to help with this step. </p>
<p>This may also involve talking to your Financial Manager (FM) to secure funding.</p>
<p>Once the Task Order (T.O.) has been created, you will need to provide information related to the task order and funding in AT-AT. This step is referred to as “Financial Verification.”</p>
<p><em>We also recommend getting familiar with the <a href="#">JEDI Cloud CLIN structures</a> so that you know which specific services are available under JEDI and categorized for contracting purposes. This will help you and the Contracting Officer create a Task Order.</em></p>
<h3>Why is this important?</h3>
<p>This step allows AT-AT and the CCPO to track and report on cloud infrastructure spending across the Department., It also enables you and your team to see your cloud usage and verify your invoices with your budget.</p>
<h3>What to prepare for Financial Verification</h3>
<p>You will need to have these details on hand before filling out the next step.</p>
<div class='responsive-table-wrapper'>
<table>
<thead>
<tr>
<th>Item youll need to provide</th>
<th>Format / Example</th>
<th>Explanation</th>
</tr>
</thead>
<tbody>
<tr>
<td>Task Order Number associated with this request*</td>
<td><em>Example: <br>1234567899C0001</em></td>
<td>
<p>Please include the original Task Order number (including the 000X at the end); this field is not requesting any modification numbers.</p>
<p>Please note that there may be a lag between the time you have created and approved the task order to the time it is searchable within the electronic.</p>
<p>A Contracting Officer will likely be the best source for this number.</p>
</td>
</tr>
<tr>
<td>Unique Item Identifiers (UII) related to your system(s) if you already have them</td>
<td><em>Example: <br>DI 0CVA5786950 OR UN1945326361234786950</em></td>
<td>
<p>A Unique Investment Identifier is a unique code that helps the Department of Defense track and report on where and how digital assets are stored and where the budget comes from.</p>
<p>Not all applications have an existing UII number assigned.</p>
<p>This identifier can be found in SNaP-IT.</p>
</td>
</tr>
<tr>
<td>Program Element (PE) Number related to your request</td>
<td><em>Example: <br>0203752A</em></td>
<td>Program Element numbers helps the Department of Defense identify which offices' budgets are contributing towards this resource use.</td>
</tr>
<tr>
<td>Program Treasury Code</td>
<td><em>Example: <br>1200</em></td>
<td>The Treasury Code (or Appropriations Code) is a four digit number that identifies resource types.</td>
</tr>
<tr>
<td>Program BA Code</td>
<td><em>Example: <br>02</em></td>
<td>The Budget Activity Code (or BA Code) is a two digit number that is the category within each appropriation and fund account used to identify the purposes, projects, or types of activities financed by the appropriation fund.</td>
</tr>
</tbody>
</table>
</div>
<p><em>*AT-AT will search your Task Order number in available APIs and find other relevant details about your task order automatically. If we are unable to locate your Task Order, you will be asked to manually enter information such as total contract amount, CLIN amounts, and contracting officer information.</em></p>
</div>
</div>
</div>
</div>
{% endblock %}