mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
added quality to release views.
This commit is contained in:
parent
aca5d1f361
commit
931d2ad682
3 changed files with 36 additions and 14 deletions
|
@ -7,7 +7,8 @@ define([
|
|||
'Shared/Toolbar/ToolbarLayout',
|
||||
'Cells/EpisodeNumberCell',
|
||||
'Cells/FileSizeCell',
|
||||
'Cells/IndexerCell'
|
||||
'Cells/IndexerCell',
|
||||
'Cells/QualityCell'
|
||||
],
|
||||
function () {
|
||||
NzbDrone.Release.Layout = Backbone.Marionette.Layout.extend({
|
||||
|
@ -25,12 +26,7 @@ define([
|
|||
sortable: true,
|
||||
cell : NzbDrone.Cells.IndexerCell
|
||||
},
|
||||
{
|
||||
name : 'size',
|
||||
label : 'Size',
|
||||
sortable: true,
|
||||
cell : NzbDrone.Cells.FileSizeCell
|
||||
},
|
||||
|
||||
{
|
||||
name : 'title',
|
||||
label : 'Title',
|
||||
|
@ -43,6 +39,19 @@ define([
|
|||
label : 'season',
|
||||
cell : NzbDrone.Cells.EpisodeNumberCell
|
||||
},
|
||||
{
|
||||
name : 'size',
|
||||
label : 'Size',
|
||||
sortable: true,
|
||||
cell : NzbDrone.Cells.FileSizeCell
|
||||
},
|
||||
{
|
||||
name : 'quality',
|
||||
label : 'Quality',
|
||||
sortable: true,
|
||||
cell : NzbDrone.Cells.QualityCell
|
||||
},
|
||||
|
||||
{
|
||||
name : 'rejections',
|
||||
label: 'decision',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue