diff --git a/styles/sections/_task_order.scss b/styles/sections/_task_order.scss index 6fcff154..1f3ea81c 100644 --- a/styles/sections/_task_order.scss +++ b/styles/sections/_task_order.scss @@ -67,6 +67,31 @@ } .task-order-summary { + margin: $gap * 4; + + hr { + border: 0; + border-bottom: 1px solid $color-gray-light; + margin-top: $gap * 4; + } + + .col { + margin: $gap * 4 0; + flex-grow: 1; + } + + .h4 { + margin-top: $gap * 2; + } + + .to-sidebar { + padding: $gap * 4; + flex-grow: unset; + margin-left: $gap * 6; + width: 33.77%; + background-color: $color-gray-lightest; + } + .panel { @include shadow-panel; } diff --git a/templates/portfolios/task_orders/task_order_review.html b/templates/portfolios/task_orders/task_order_review.html new file mode 100644 index 00000000..83fcb9c6 --- /dev/null +++ b/templates/portfolios/task_orders/task_order_review.html @@ -0,0 +1,52 @@ +{% extends 'portfolios/base.html' %} + +{% from "components/icon.html" import Icon %} +{% from "components/text_input.html" import TextInput %} +{% from "components/multi_checkbox_input.html" import MultiCheckboxInput %} +{% from 'components/save_button.html' import SaveButton %} + +{% block content %} + +{% include "fragments/flash.html" %} +
+
Portfolio Name
+ +
+ 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. +
+ +
+ +
+
+
Review your task order
+
Task order number - 10 digit found in your system of record
+
0123456789
+ +
+ +
Funding summary
+
CLIN 1
+
CLIN 2
+ +
+ +
Supporting document
+
{{ Icon('ok',classes="icon-validation") }}document
+
+ +
+
Total obligated funds
+
$500,000
+
reprehenderit in voluptate velit
+ +
+ +
Total contract amount
+
$800,000
+ +
+
+ +
+{% endblock %}