aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-03-13 17:44:41 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-03-13 17:44:41 +0000
commitfb6db085e49b2f63e4cc8558c560eeff187f71f4 (patch)
tree8d73caa0998da390b849adceae5e4066b311ee9f /src
parentbe1c52d073fe16375a95a74d39fff08274924211 (diff)
parent8264680aa9c58c3d6553c0f17987dfd76a800b4a (diff)
Merge "Bookings no longer default to 0 days"
Diffstat (limited to 'src')
-rw-r--r--src/workflow/forms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/workflow/forms.py b/src/workflow/forms.py
index 03940d8..b40713f 100644
--- a/src/workflow/forms.py
+++ b/src/workflow/forms.py
@@ -186,9 +186,9 @@ class BookingMetaForm(forms.Form):
widget=NumberInput(
attrs={
"type": "range",
- 'min': "0",
+ 'min': "1",
"max": "21",
- "value": "0"
+ "value": "1"
}
)
)