I have this huge model called Permit with a whole bunch of attributes like Fees, Setbacks, Building Dimensions, etc. Each of those attributes also has smaller attributes that describe it (represented as normal attributes).
Example. Fees is made up of a couple other random specific fees that are all added together to receive the total fees (represented as 'Fees')
I want to get to the point where a User can set their own attributes (or models?) about whatever they would like pertaining to the Permits.
Am I going in the right direction but making all of these attributes to the 'Permit' model?
EDIT: Also if Fees, Setbacks, etc. deserve their own model, how would I show another model's template.hbs on that permit.hbs? I come from a Rails background and Ember routes confuses the hell out of me.
EDIT2: I have no intention of making Fees, Setbacks, etc. have it's own page.