class Pettanr.Views.PanelPicture.Summary extends Pettanr.View.Summary initialize: (options) -> super(options) @item = options.item @item.get_parent('picture', this, { success: (@picture) => @credit = new Pettanr.View.Credit(@picture, {}) @item.get_parent('panel', this, { success: (@panel) => @panel_face_button =@panel.mini_face_button({ context: this, click: () -> @trigger('http_get', @panel.show_url()) }) @trigger('ready') }) }) render: () -> this.$el.html('') this.$el.append(@credit.render().el) this.$el.append(@panel_face_button.render().el) this