doyu commited on
Commit
186a47a
1 Parent(s): 709dfa4

time unit 0.25==15min

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,10 +29,10 @@ with form:
29
  "Anastasia C Diseth",
30
  ], index=0
31
  )
32
- binum = cols[1].text_input("Backlog item # (meeting=='0'):")
33
  cols = st.columns(2)
34
  date = cols[0].date_input("work date:")
35
- hours = cols[1].slider("Time spent (hours):", 1., 7.5, step=0.5)
36
  comment = st.text_area("Comment:")
37
  submitted = st.form_submit_button(label="Submit")
38
 
 
29
  "Anastasia C Diseth",
30
  ], index=0
31
  )
32
+ binum = cols[1].text_input("Backlog item # (Daily, Review, Retro, Planning is '0'):")
33
  cols = st.columns(2)
34
  date = cols[0].date_input("work date:")
35
+ hours = cols[1].slider("Time spent (hours):", 0.25, 7.5, step=0.25)
36
  comment = st.text_area("Comment:")
37
  submitted = st.form_submit_button(label="Submit")
38