move pending financial review text

This commit is contained in:
dandds 2018-08-10 12:12:02 -04:00
parent 1c101a3c4f
commit 251bef6bb8
3 changed files with 21 additions and 31 deletions

View File

@ -1,6 +1,6 @@
{% from "components/icon.html" import Icon %} {% from "components/icon.html" import Icon %}
{% macro Alert(title, message=None, actions=None, level='info') -%} {% macro Alert(title, message=None, actions=None, level='info', fragment=None) -%}
{% set role = 'alertdialog' if actions else 'alert' %} {% set role = 'alertdialog' if actions else 'alert' %}
{% set levels = { {% set levels = {
'warning': { 'warning': {
@ -31,6 +31,12 @@
<div class='alert__message'>{{ message | safe }}</div> <div class='alert__message'>{{ message | safe }}</div>
{% endif %} {% endif %}
{% if fragment %}
<div class='alert__message'>
{% include fragment %}
</div>
{% endif %}
{% if actions %} {% if actions %}
<div class='alert__actions'>{{ actions | safe }}</div> <div class='alert__actions'>{{ actions | safe }}</div>
{% endif %} {% endif %}

View File

@ -0,0 +1,12 @@
<p>
The next step is to create a Task Order associated with JEDI Cloud.
Please contact a Contracting Officer (KO), Contracting Officer
Representative (COR), or a Financial Manager to help with this step.
</p>
<p>
Once the Task Order has been created, you will be asked to provide
details about the task order in the Financial Verification step.
</p>
<p>
<i>Learn more</i> about the JEDI Task Order and the Financial Verification process.
</p>

View File

@ -9,20 +9,7 @@
{% call Modal(name='pendingFinancialVerification', dismissable=True) %} {% call Modal(name='pendingFinancialVerification', dismissable=True) %}
<h1>Request submitted!</h1> <h1>Request submitted!</h1>
<p> {% include 'fragments/pending_financial_verification.html' %}
The next step is to create a Task Order associated with JEDI Cloud.
Please contact a Contracting Officer (KO), Contracting Officer
Representative (COR), or a Financial Manager to help with this step.
</p>
<p>
Once the Task Order has been created, you will be asked to provide
details about the task order in the Financial Verification step.
</p>
<p>
<i>Learn more</i> about the JEDI Task Order and the Financial Verification process.
</p>
<div class='action-group'> <div class='action-group'>
<a v-on:click="closeModal('pendingFinancialVerification')" class='action-group__action usa-button'>Close</a> <a v-on:click="closeModal('pendingFinancialVerification')" class='action-group__action usa-button'>Close</a>
@ -42,22 +29,7 @@
{% if pending_financial_verification %} {% if pending_financial_verification %}
{{ Alert('Pending Financial Verification', {{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }}
message="
<p>
The next step is to create a Task Order associated with JEDI Cloud.
Please contact a Contracting Officer (KO), Contracting Officer
Representative (COR), or a Financial Manager to help with this step.
</p>
<p>
Once the Task Order has been created, you will be asked to provide
details about the task order in the Financial Verification step.
</p>
<p>
<i>Learn more</i> about the JEDI Task Order and the Financial Verification process.
</p>
"
) }}
{% endif %} {% endif %}