diff --git a/templates/components/alert.html b/templates/components/alert.html index d3385d1d..1fd30167 100644 --- a/templates/components/alert.html +++ b/templates/components/alert.html @@ -1,6 +1,6 @@ {% 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 levels = { 'warning': { @@ -31,6 +31,12 @@
{% endif %} + {% if fragment %} + + {% endif %} + {% if actions %}+ 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. +
++ Once the Task Order has been created, you will be asked to provide + details about the task order in the Financial Verification step. +
++ Learn more about the JEDI Task Order and the Financial Verification process. +
diff --git a/templates/requests.html b/templates/requests.html index 4dc0e865..df6999ca 100644 --- a/templates/requests.html +++ b/templates/requests.html @@ -9,20 +9,7 @@ {% call Modal(name='pendingFinancialVerification', dismissable=True) %}- 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. -
- -- Once the Task Order has been created, you will be asked to provide - details about the task order in the Financial Verification step. -
- -- Learn more about the JEDI Task Order and the Financial Verification process. -
+ {% 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. -
-- Once the Task Order has been created, you will be asked to provide - details about the task order in the Financial Verification step. -
-- Learn more about the JEDI Task Order and the Financial Verification process. -
- " - ) }} + {{ Alert('Pending Financial Verification', fragment="fragments/pending_financial_verification.html") }} {% endif %}