From 2e989eb8f773d4b651096eabef041df707fe7953 Mon Sep 17 00:00:00 2001
From: Luis Cielak
Date: Wed, 25 Jul 2018 16:28:23 -0400
Subject: [PATCH] Update POC fields
---
templates/requests/screen-3.html.to | 41 +++++------------------------
1 file changed, 7 insertions(+), 34 deletions(-)
diff --git a/templates/requests/screen-3.html.to b/templates/requests/screen-3.html.to
index 4dbeb3d4..5368550a 100644
--- a/templates/requests/screen-3.html.to
+++ b/templates/requests/screen-3.html.to
@@ -1,14 +1,14 @@
{% extends '../requests_new.html.to' %}
{% block subtitle %}
- Primary Government/Military
Point of Contact (POC)
+Primary Government/Military
Point of Contact (POC)
{% end %}
{% block form %}
{% autoescape None %}
{% if f.errors %}
- There were some errors, see below.
+There were some errors, see below.
{% end %}
Please designate a Primary Point of Contact that will be responsible for owning the workspace in the JEDI Cloud.
@@ -23,36 +23,9 @@
This POC may be you.
-{{ f.fname_poc.label }}
-{{ f.fname_poc(placeholder="First name") }}
-{% for e in f.fname_poc.errors %}
-
- {{ e }}
-
-{% end %}
+{% module TextInput(f.fname_poc) %}
+{% module TextInput(f.lname_poc) %}
+{% module TextInput(f.email_poc) %}
+{% module TextInput(f.dodid_poc) %}
-{{ f.lname_poc.label }}
-{{ f.lname_poc(placeholder="Last name") }}
-{% for e in f.lname_poc.errors %}
-
- {{ e }}
-
-{% end %}
-
-{{ f.email_poc.label }}
-{{ f.email_poc(placeholder="jane@mail.mil") }}
-{% for e in f.email_poc.errors %}
-
- {{ e }}
-
-{% end %}
-
-{{ f.dodid_poc.label }}
-{{ f.dodid_poc(placeholder="10-digit number on the back of the CAC") }}
-{% for e in f.dodid_poc.errors %}
-
- {{ e }}
-
-{% end %}
-
-{% end %}
+{% end %}
\ No newline at end of file