mirror of
https://github.com/Radarr/Radarr
synced 2026-01-17 13:03:26 +01:00
21 lines
No EOL
565 B
JavaScript
21 lines
No EOL
565 B
JavaScript
var Marionette = require('marionette');
|
|
var NzbDroneCell = require('./NzbDroneCell');
|
|
|
|
module.exports = NzbDroneCell.extend({
|
|
render : function() {
|
|
|
|
var templateName = this.column.get('template') || this.template;
|
|
|
|
this.templateFunction = Marionette.TemplateCache.get(templateName);
|
|
this.$el.empty();
|
|
|
|
if (this.cellValue) {
|
|
var data = this.cellValue.toJSON();
|
|
var html = this.templateFunction(data);
|
|
this.$el.html(html);
|
|
}
|
|
|
|
this.delegateEvents();
|
|
return this;
|
|
}
|
|
}); |