Dynamically Specifying a View Template
Learn how to dynamically provide templates to views in Marionette.
We'll cover the following...
In the code that we've modified so far, we’ve specified the template as a permanent attribute on our view because we’re always going to use the same template in this case. However, it’s also possible to dynamically provide templates to views. ...