2013-05-02 01:42:30 +03:00
|
|
|
"use strict";
|
2013-04-24 03:30:25 +03:00
|
|
|
Backgrid.SeriesStatusCell = Backgrid.Cell.extend({
|
|
|
|
className: "series-status-cell",
|
|
|
|
|
|
|
|
render: function () {
|
|
|
|
this.$el.empty();
|
|
|
|
var monitored = this.model.get('monitored');
|
|
|
|
var status = this.model.get('status');
|
|
|
|
|
|
|
|
if (!monitored) {
|
|
|
|
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
|
|
|
|
}
|
2013-05-14 06:21:37 +03:00
|
|
|
else if (status === 'continuing') {
|
2013-04-24 03:30:25 +03:00
|
|
|
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
|
|
|
|
}
|
|
|
|
|
|
|
|
else {
|
|
|
|
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
2013-05-02 01:42:30 +03:00
|
|
|
});
|