From c26854e26e75867b030cec961056230d86fee513 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Thu, 6 Sep 2018 10:56:23 -0400 Subject: [PATCH] Remove unused templates --- templates/requests/screen-0.html | 12 -- templates/requests/screen-5.html | 200 ------------------------------- 2 files changed, 212 deletions(-) delete mode 100644 templates/requests/screen-0.html delete mode 100644 templates/requests/screen-5.html diff --git a/templates/requests/screen-0.html b/templates/requests/screen-0.html deleted file mode 100644 index 19f57d2e..00000000 --- a/templates/requests/screen-0.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends '../requests_new.html.to' %} - -{% block form %} -

New JEDI Request

- -

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Natus error omnis a, tenetur similique quo officiis voluptates eum recusandae dolorem minus dignissimos, magni consequatur, maxime debitis reprehenderit sint non iusto?

- -New Application -Existing Application -Sandbox Environment - -{% endblock %} diff --git a/templates/requests/screen-5.html b/templates/requests/screen-5.html deleted file mode 100644 index 435b88cf..00000000 --- a/templates/requests/screen-5.html +++ /dev/null @@ -1,200 +0,0 @@ -{% extends '../requests_new.html.to' %} - -{% from "components/alert.html" import Alert %} - -{% block form %} - -{% if f.errors %} - {{ Alert('There were some errors', - message="

Please complete all the fields before submitting.

", - level='error' - ) }} -{% endif %} - - -

Financial Verification

-

In order to get you access to the JEDI Cloud, we will need you to enter the details below that will help us verify and account for your Task Order.

- -{{ f.task_order_number.label }} -{{ f.task_order_number(placeholder="Example: 1234567899C0001") }} -{% for e in f.task_order_number.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.uii_ids.label }} -{{ f.uii_ids(placeholder="Example: \nDI 0CVA5786950 \nUN1945326361234786950") }} -{% for e in f.uii_ids.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.pe_id.label }} -{{ f.pe_id(placeholder="Example: 0203752A") }} -{% for e in f.pe_id.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.treasury_code.label }} -{{ f.treasury_code(placeholder="Example: 1200") }} -{% for e in f.treasury_code.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.ba_code.label }} -{{ f.ba_code(placeholder="Example: 02") }} -{% for e in f.ba_code.errors %} -
- {{ e }} -
-{% endfor %} - - - -

Contracting Officer (KO) Information

- -{{ f.fname_co.label }} -{{ f.fname_co(placeholder="Contracting Officer first name") }} -{% for e in f.fname_co.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.lname_co.label }} -{{ f.lname_co(placeholder="Contracting Officer last name") }} -{% for e in f.lname_co.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.email_co.label }} -{{ f.email_co(placeholder="jane@mail.mil") }} -{% for e in f.email_co.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.office_co.label }} -{{ f.office_co(placeholder="Example: WHS") }} -{% for e in f.office_co.errors %} -
- {{ e }} -
-{% endfor %} - - - - -

Contracting Officer Representative (COR) Information

- -{{ f.fname_cor.label }} -{{ f.fname_cor(placeholder="Contracting Officer Representative first name") }} -{% for e in f.fname_cor.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.lname_cor.label }} -{{ f.lname_cor(placeholder="Contracting Officer Representative last name") }} -{% for e in f.lname_cor.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.email_cor.label }} -{{ f.email_cor(placeholder="jane@mail.mil") }} -{% for e in f.email_cor.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.office_cor.label }} -{{ f.office_cor(placeholder="Example: WHS") }} -{% for e in f.office_cor.errors %} -
- {{ e }} -
-{% endfor %} - -

-↓ FIELDS NEEDED FOR MANUAL ENTRY OF TASK ORDER INFORMATION (only necessary if EDA info not available) - - -{{ f.funding_type.label }} -{{ f.funding_type }} -{% for e in f.funding_type.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.funding_type_other.label }} -{{ f.funding_type_other(placeholder="") }} -{% for e in f.funding_type_other.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.clin_0001.label }} -{{ f.clin_0001(placeholder="50,000") }} -{% for e in f.clin_0001.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.clin_0003.label }} -{{ f.clin_0003(placeholder="13,000") }} -{% for e in f.clin_0003.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.clin_1001.label }} -{{ f.clin_1001(placeholder="30,000") }} -{% for e in f.clin_1001.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.clin_1003.label }} -{{ f.clin_1003(placeholder="7,000") }} -{% for e in f.clin_1003.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.clin_2001.label }} -{{ f.clin_2001(placeholder="30,000") }} -{% for e in f.clin_2001.errors %} -
- {{ e }} -
-{% endfor %} - -{{ f.clin_2003.label }} -{{ f.clin_2003(placeholder="7,000") }} -{% for e in f.clin_2003.errors %} -
- {{ e }} -
-{% endfor %} - - -{% endblock %}