I have a scenario where the data being manipulated on the client is presented and interacted with in a different way than it is represented on the server.
Consider t
Your model should correspond as closely as possible to what you have server side. So stick with start_at
and end_at
. That will greatly simplify your sync()
operations.
On your edit form's View, you can:
start_date
, start_time
, duration
through simple functions and call them in the template.start_at
and end_at
on submitting.