From 9883bde00cefbee585451a474b369144a7c77ea5 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Tue, 8 Jan 2019 17:19:19 -0500 Subject: [PATCH] Remove unneccesary flash The flash is in the base 'task_order/_new.html' template, so it doesn't need to be included in the section as well. --- templates/task_orders/new/app_info.html | 2 -- templates/task_orders/new/funding.html | 2 -- templates/task_orders/new/oversight.html | 2 -- templates/task_orders/new/review.html | 2 -- 4 files changed, 8 deletions(-) diff --git a/templates/task_orders/new/app_info.html b/templates/task_orders/new/app_info.html index 9005bc2b..9e01a1fc 100644 --- a/templates/task_orders/new/app_info.html +++ b/templates/task_orders/new/app_info.html @@ -11,8 +11,6 @@ {% block form %} -{% include "fragments/flash.html" %} -

Basic Information

{{ TextInput(form.portfolio_name, placeholder="The name of your office or organization") }} {{ TextInput(form.scope, paragraph=True) }} diff --git a/templates/task_orders/new/funding.html b/templates/task_orders/new/funding.html index 701c2b75..23586216 100644 --- a/templates/task_orders/new/funding.html +++ b/templates/task_orders/new/funding.html @@ -10,8 +10,6 @@ {% block form %} -{% include "fragments/flash.html" %} -
diff --git a/templates/task_orders/new/oversight.html b/templates/task_orders/new/oversight.html index 59ea3797..102d1c84 100644 --- a/templates/task_orders/new/oversight.html +++ b/templates/task_orders/new/oversight.html @@ -9,8 +9,6 @@ {% block form %} -{% include "fragments/flash.html" %} -

Contracting Officer (KO) Information

{{ UserInfo(form.ko_first_name, form.ko_last_name, form.ko_email, form.ko_dod_id) }} diff --git a/templates/task_orders/new/review.html b/templates/task_orders/new/review.html index 34a8d28c..7ca973a1 100644 --- a/templates/task_orders/new/review.html +++ b/templates/task_orders/new/review.html @@ -10,8 +10,6 @@ {% block form %} -{% include "fragments/flash.html" %} - {% macro TOEditLink(screen=1) %} {% if task_order %} {{ EditLink(url_for("task_orders.new", screen=screen, task_order_id=task_order.id)) }}