From 3f8ade0dc992278eefc689bddbf9c1423845b953 Mon Sep 17 00:00:00 2001 From: leigh-mil Date: Thu, 18 Jul 2019 09:49:52 -0400 Subject: [PATCH] Do not show previous button on first step of form --- templates/task_orders/builder_base.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/templates/task_orders/builder_base.html b/templates/task_orders/builder_base.html index c2b342d2..e99aef9b 100644 --- a/templates/task_orders/builder_base.html +++ b/templates/task_orders/builder_base.html @@ -19,9 +19,11 @@ class="usa-button usa-button-primary"> {% endblock %} - - Previous - + {% if step != "1" %} + + Previous + + {% endif %}