class Pettanr.Views.License.Summary extends Pettanr.Views.Common.Summary initialize: (options) -> super(options) @item = options.item @load() load: () -> @system_picture = @item.system_picture() @system_picture.fetch({cache: true}).done => @img = new Tag.Img({ attr: { src: @system_picture.r_url() } }) @trigger('ready') render: () -> this.$el.html('') this.$el.html(@img.render().el) this