You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
"use strict";
|
|
|
|
|
|
|
|
define(['app','backgrid' ], function () {
|
|
|
|
NzbDrone.Cells.EpisodeStatusCell = Backgrid.Cell.extend({
|
|
|
|
|
|
|
|
className: 'episode-status-cell',
|
|
|
|
|
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
|
|
|
|
|
|
|
if (this.model) {
|
|
|
|
|
|
|
|
var icon;
|
|
|
|
|
|
|
|
if (this.model.get('episodeFile')) {
|
|
|
|
icon = 'icon-ok';
|
|
|
|
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (this.model.get('hasAired')) {
|
|
|
|
icon = 'icon-warning-sign';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
icon = 'icon-time';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.$el.html('<i class="{0}"/>'.format(icon));
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|