How should I make this using Router?
var itemView = Marionette.ItemView.extend({
events: {
'click #loadPage': 'loadPage'
},
loadPage: function () {
document.location.hash = '#tasks/' + this.model.get('id');
}
});