I'm new to backbone.js
so I can't understand the architecture for this application:
Page 1:
User should enter his registration information and click to go to page 2
Page 2:
User should enter person information and so on, click to go to page 3
Page 3:
User can read some information based on previously entered information
The backend is rails server.
So obviously we will have user model, but what about collection: should we have it in the application?
If we don't have collection, how we will synchronize user's information with server?
How to build views for this kind of application? Thanks