Spaces:
Sleeping
Sleeping
ruchi
commited on
Commit
·
cba6638
1
Parent(s):
604214c
Add subscriber take out for 3 years
Browse files
app.py
CHANGED
@@ -25,7 +25,12 @@ st.markdown(
|
|
25 |
|
26 |
selectedCity = st.selectbox("Please select the City and the Bank Product for Your Proposition.", ["CharlesTown", "Limburg"])
|
27 |
selectedProduct = st.selectbox("Please select the Product", ["Current", "Mortage", "Credit Card", "Crypto"])
|
28 |
-
subscriberTakeOut = st.number_input("Please enter your subscriber take up
|
|
|
|
|
|
|
|
|
|
|
29 |
productName = st.text_input("Please enter your product name")
|
30 |
|
31 |
moneyNeedsList, moneyNeedsDict = listNeeds('money_needs')
|
|
|
25 |
|
26 |
selectedCity = st.selectbox("Please select the City and the Bank Product for Your Proposition.", ["CharlesTown", "Limburg"])
|
27 |
selectedProduct = st.selectbox("Please select the Product", ["Current", "Mortage", "Credit Card", "Crypto"])
|
28 |
+
subscriberTakeOut = st.number_input("Please enter your subscriber take up target for year 1", min_value=0, step=1)
|
29 |
+
|
30 |
+
subscriberTakeOutYear2 = st.number_input("Please enter your subscriber take up target for year 2", min_value=0, step=1)
|
31 |
+
|
32 |
+
subscriberTakeOutYear3 = st.number_input("Please enter your subscriber take up target for year 3", min_value=0, step=1)
|
33 |
+
|
34 |
productName = st.text_input("Please enter your product name")
|
35 |
|
36 |
moneyNeedsList, moneyNeedsDict = listNeeds('money_needs')
|