I have a field last_update
in which I want to store the current datetime as a user edits a form in form view. Basically I need to default the value of last_update
to the system's date.
I tried using:
<field name="last_update" default_last_update="datetime.now()"/>
But, it is not working.