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