It seems I can only specify templates inside of the template folder. Is that right? That seems a shame as I am using the PODs structure so that all of my related routes, controllers and templates live together and this seems to break that structure. I realise I can use the default template but I want two routes to share a template.
Pod structure should work, however, what you have you listed isn’t quite pod structure. The path should be: /packaging/cases/create-update/template.hbs. With Pod structure, the file should be named template just as controllers are controller.js and routes are route.js.
@sbatson5 Thanks for your advice. I will restate my question as I think it might be an XY Problem. How can I get the following routes to use the same template please?
/packaging/cases/create/route.js/packaging/cases/update/route.js
The simplest option would be to have two different templates and just render the same component within both. That way you get the same functionality with both templates.