101 lines
3.2 KiB
HTML
101 lines
3.2 KiB
HTML
{% extends 'portfolios/base.html' %}
|
|
|
|
{% from "components/icon.html" import Icon %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="task-order-summary">
|
|
<div class="h2">Portfolio Name</div>
|
|
|
|
<semi-collapsible-text inline-template>
|
|
<div>
|
|
<div v-bind:class="{ 'semi-collapsed' : !open }">
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
|
|
</div>
|
|
<a v-on:click='toggle' v-show="!open" class="right more">More{{ Icon('caret_down') }}</a>
|
|
<a v-on:click='toggle' v-show="open" class="right more">Less{{ Icon('caret_up') }}</a>
|
|
</div>
|
|
</semi-collapsible-text>
|
|
|
|
<hr>
|
|
|
|
|
|
<div class="h1">Review your task order</div>
|
|
<div>Check to make sure the information you entered is correct. After submission, you will confirm this task order was signed by a contracting officer. Thereafter, you will be informed as soon as CCPO completes their review.</div>
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="h4">Task order number - 10 digit found in your system of record</div>
|
|
<div>{{task_order.number}}</div>
|
|
|
|
<hr>
|
|
|
|
<div class="h3">Funding summary</div>
|
|
<div>CLIN 1: Unclassified Cloud Services 001</div>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Amount</th>
|
|
<th>Obligated</th>
|
|
<th>PoP Start</th>
|
|
<th>PoP End</th>
|
|
<th>LOA</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td>$500,000</td>
|
|
<td>Yes</td>
|
|
<td>9/07/19</td>
|
|
<td>9/07/20</td>
|
|
<td>34820394</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div>CLIN 2: Unclassified Cloud Services 002</div>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Amount</th>
|
|
<th>Obligated</th>
|
|
<th>PoP Start</th>
|
|
<th>PoP End</th>
|
|
<th>LOA</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td>$300,000</td>
|
|
<td>No</td>
|
|
<td>9/08/20</td>
|
|
<td>9/08/21</td>
|
|
<td>q9384751934</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<hr>
|
|
|
|
<div class="h3">Supporting document</div>
|
|
<div class="h4">{{ Icon('ok',classes="icon-validation") }}document</div>
|
|
</div>
|
|
|
|
<div class="col to-sidebar">
|
|
<div class="h4">Total obligated funds</div>
|
|
<div class="h3">$500,000</div>
|
|
<div>This is the funding allocated to cloud services. It may be 100% or a portion of the total task order budget.</div>
|
|
|
|
<hr>
|
|
|
|
<div class="h4">Total contract amount</div>
|
|
<div class="h3">$800,000</div>
|
|
<div>This is the value of all funds obligated for this contract, including -- but not limited to -- funds obligated for the cloud.</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
{% endblock %}
|