js and for my first application I'm trying to write a survey application. My idea is to have a surveys route that list surveys available, and when you click on the survey it loads the questions in that survey. Each survey would have its on template used to display the questions in a particular way. So I'm starting off with this.
http://jsbin.com/uVoTOyOdo/1/edit
My question is how can I link a particular set of questions and template to a survey? Ideally I'd like the user to have the ability to create the questions and pick a template. I don't have the surveys route in the router map yet, because I'm not sure how to link the surveys and their questions to a particular survey using the FixtureAdapter, so when a survey is clicked on the right questions come up for the survey. Also is it a good idea to have things nested like this?