ここで問題の jsBin を設定しました: http://jsbin.com/oSIJunu/2/edit?html,js,console,output
レンダー関数 (friendView.render().el) の el プロパティの問題により、コレクション ビューがレンダリングされません。
ビューは次のようになります。
var FriendListView = Backbone.View.extend({
render: function(){
this.collection.forEach(this.addOne, this);
},
addOne: function(friendModel){
var friendView = new FriendView({model: friendModel});
this.$el.append(friendView.render().el);
}
});