hi, I have to send the arguments value from redirect to the target function, for e.g:
redirect(URL(r=request,f='record_config')) def record_config(record_id): I have to send the value of record_id from the redirect() to the record_config() function OR is it some other way to send value of record_id and access it inside record_config() function So i can avoid defining argument in the function? --