1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

Movies should now show on the main page. However, a lot has to be done to the detail controller before it is really going to work.

This commit is contained in:
Leonardo Galli
2016-12-29 17:38:54 +01:00
parent 5ebfac6cc8
commit b7c70d750a
33 changed files with 1647 additions and 2 deletions
@@ -0,0 +1,8 @@
var Marionette = require('marionette');
var ListItemView = require('./SeriesOverviewItemView');
module.exports = Marionette.CompositeView.extend({
itemView : ListItemView,
itemViewContainer : '#x-series-list',
template : 'Series/Index/Overview/SeriesOverviewCollectionViewTemplate'
});