mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added TemplateBackedCell for all your cell template needs
This commit is contained in:
parent
f8bae13e1c
commit
0db39edb2c
3 changed files with 6 additions and 18 deletions
|
@ -35,7 +35,7 @@ define([
|
|||
name: 'title',
|
||||
label: 'Title',
|
||||
editable: false,
|
||||
cell: 'string',
|
||||
cell: Backgrid.TemplateBackedCell.extend({ template: 'Series/Index/Table/SeriesTitleTemplate' }),
|
||||
headerCell: 'nzbDrone'
|
||||
},
|
||||
{
|
||||
|
@ -71,7 +71,7 @@ define([
|
|||
label: 'Episodes',
|
||||
editable: false,
|
||||
sortable: false,
|
||||
cell: 'episodeProgress',
|
||||
cell: Backgrid.TemplateBackedCell.extend({ template: 'Series/EpisodeProgressTemplate' }),
|
||||
headerCell: 'nzbDrone'
|
||||
},
|
||||
{
|
||||
|
@ -79,7 +79,7 @@ define([
|
|||
label: '',
|
||||
editable: false,
|
||||
sortable: false,
|
||||
cell: 'controlsColumn',
|
||||
cell: Backgrid.TemplateBackedCell.extend({ template: 'Series/Index/Table/ControlsColumnTemplate' }),
|
||||
headerCell: 'nzbDrone'
|
||||
}
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue