class Pettanr.Views.ResourcePicturePicture.Summary extends Pettanr.View.Summary initialize: (options) -> super(options) @load() load: () -> @item.get_parent('picture', this, { success: (@picture) => @credit = new Pettanr.View.Credit(@picture, {}) @trigger('ready') }) render: () -> this.$el.html('') this.$el.append(@credit.render().el) this