hello,
I have two form vars
1) startDt (defined as _class="date"
2) endDt (defined as _class="date"
if form.accepts(request,session)
redirect (URL('Labor_report'))
def Labor_report():
strDT = request.vars(0)
endDT = request.vars(1)
My issue is strDT and endDT are both NONE...
I cannot use strDT or endDT in my query since it is not passing the value
any advice would be appreciated.
The form works great with "Date picker"
Now, I want to use these two variables in a query and I am using
request.vars
--