I want to get and display current login user name
in qweb report
in odoo. Can someone please tell me, how can i do it or give me some example code. I'll be very thankful...!
You can use "user" in your qweb template to get details of current login user, it is record of res.users.
To print the user name
<span t-esc="user.name"></span>
Click here to see more