I am using odoo 10e what i want to do is that when a user click a button i want to redirect him to a html page and show him ThankYou msg. Like we see when we submit a survey on google. It show us thankyou page in last and we are even not able to go back and submit the survery again.
According to my knowledge if i want to redirect user to a url we can use following.
return {
'type': 'ir.actions.act_url',
'url': 'www.google.com',
'target': 'self'
}
But i want to show my own page like suppose if i have index.html file in my custome module.