adding episode status to episode view.

pull/4/head
kay.one 11 years ago
parent 21e9bad6d5
commit 41c886b5dc

@ -17,6 +17,14 @@ define(['app', 'Episode/Layout'], function () {
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));
}

@ -1,5 +1,5 @@
'use strict';
define(['app', 'Series/Details/EpisodeDetailCell'], function () {
define(['app', 'Series/Details/EpisodeStatusCell'], function () {
NzbDrone.Series.Details.SeasonLayout = Backbone.Marionette.Layout.extend({
template: 'Series/Details/SeasonLayoutTemplate',
@ -8,27 +8,28 @@ define(['app', 'Series/Details/EpisodeDetailCell'], function () {
},
columns: [
{
name : 'details',
label : 'Details',
cell : NzbDrone.Series.Details.EpisodeDetailCell
},
{
name : 'episodeNumber',
label : '#',
cell : 'integer'
name : 'episodeNumber',
label: '#',
cell : 'integer'
},
{
name : 'title',
label : 'Title',
cell : 'string'
name : 'title',
label: 'Title',
cell : 'string'
},
{
name : 'airDate',
label : 'Air Date',
cell : 'date'
name : 'airDate',
label: 'Air Date',
cell : 'date'
//formatter: new Backgrid.AirDateFormatter()
} ,
{
name : 'status',
label: 'Status',
cell : NzbDrone.Series.Details.EpisodeStatusCell
}
],

@ -43,12 +43,15 @@ define(['app'], function () {
}
return 'primary';
},
hasAired : function () {
return Date.create(this.get('airDate')).isBefore(Date.create());
}
},
defaults: {
seasonNumber: 0,
status: 0
status : 0
}
});
});

Loading…
Cancel
Save