BookApp.Views.KeyWord = Backbone.View.extend({
tagName: 'li',
initialize : function(){
this.render();
},
render : function(){
console.log(this.model.toJSON());
this.$el.html(_.template("( -<%= name %>- )",this.model.toJSON()) );
console.log(this.el);
return this;
}
})