Following my question here Nested Routes in Ember I would like to replace the view displayed from /settings/users/ with the view displayed /settings/users/1 .
My routes are defined as:
Router.map(function() { this.route('login'); this.resource('settings', { path: 'settings/:settings_id' }, function() { this.route('overview'); this.route('users', function() { this.route('user', { path: ':user_id' }); }); }); });
My user.hbs template will be displayed when users.hbs contains {{outlet}} . I want user.hbs display instead of users.hbs not inside it.
source share