Pods & Loading/Error Templates

SOLVED!

Thanks for the help dan!

I needed to re-organise my router.js to use the parent/child route format:

export default Router.map(function() {
    this.route('author', { path: "authors" }, function() {
    	this.route('list', { path: "list" });
      	this.route('show', { path: ":id" });
    });
});
  • Route: author uses pods/loading
  • Route: author.list uses pods/author/loading
  • Route: author.show uses pods/author/loading
1 Like