From 1.7.0 changelog :
Underline patterns no longer accept the initial data object. _.template always returns a function.
You will need to change your code to the following:
$.get('tpl/listTpl.html', function(templates) { var template = _.template(templates); var result = template({list:app.collections.list.models}); that.$el.html(result); });
source share