From d61bf853acf42d288b7d0d2cbaded75e0a430ce5 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Tue, 4 Sep 2018 11:17:34 -0400 Subject: [PATCH] move form block outside panel markup --- .../requests/financial_verification.html | 55 +++++++++++-------- 1 file changed, 31 insertions(+), 24 deletions(-) diff --git a/templates/requests/financial_verification.html b/templates/requests/financial_verification.html index 51eeccba..3e6335df 100644 --- a/templates/requests/financial_verification.html +++ b/templates/requests/financial_verification.html @@ -27,6 +27,25 @@ ) }} {% endif %} + {% block form_action %} + {% if extended %} +
+ {% else %} + + {% endif %} + {% endblock %} + + {{ f.csrf_token }} + {% block form %} + {% autoescape false %} + + {% if f.errors %} + {{ Alert('There were some errors', + message="

Please see below.

", + level='error' + ) }} + {% endif %} +
@@ -36,27 +55,10 @@
- {% block form_action %} - {% if extended %} - - {% else %} - - {% endif %} - {% endblock %} - - {{ f.csrf_token }} - {% block form %} - {% autoescape false %} - - {% if f.errors %} - {{ Alert('There were some errors', - message="

Please see below.

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

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.

+
+ {% if extended %}
{{ OptionsInput(f.funding_type) }} @@ -155,13 +157,18 @@ {% endautoescape %} - {% endblock form %} - {% block next %} - - {% endblock %} - +
+ + {% endblock form %} + {% block next %} +
+ +
+ {% endblock %} + +