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