diff --git a/UI/Series/Index/List/ItemView.js b/UI/Series/Index/List/ItemView.js
index 536945110..de79fe4da 100644
--- a/UI/Series/Index/List/ItemView.js
+++ b/UI/Series/Index/List/ItemView.js
@@ -10,7 +10,6 @@ define([
 ], function () {
 
     NzbDrone.Series.Index.List.ItemView = Backbone.Marionette.ItemView.extend({
-        tagName : 'tr',
         template: 'Series/Index/List/ItemTemplate',
 
         ui: {
diff --git a/UI/Series/Index/Posters/CollectionTemplate.html b/UI/Series/Index/Posters/CollectionTemplate.html
new file mode 100644
index 000000000..a09e98ac6
--- /dev/null
+++ b/UI/Series/Index/Posters/CollectionTemplate.html
@@ -0,0 +1,5 @@
+
\ No newline at end of file
diff --git a/UI/Series/Index/Posters/CollectionView.js b/UI/Series/Index/Posters/CollectionView.js
new file mode 100644
index 000000000..c652e1017
--- /dev/null
+++ b/UI/Series/Index/Posters/CollectionView.js
@@ -0,0 +1,17 @@
+'use strict';
+
+define(['app', 'Quality/QualityProfileCollection', 'Series/Index/Posters/ItemView', 'Config'], function (app, qualityProfileCollection) {
+
+    NzbDrone.Series.Index.Posters.CollectionView = Backbone.Marionette.CompositeView.extend({
+        itemView                : NzbDrone.Series.Index.Posters.ItemView,
+        itemViewContainer       : '#x-series-posters',
+        template                : 'Series/Index/Posters/CollectionTemplate',
+        qualityProfileCollection: qualityProfileCollection,
+
+        initialize: function () {
+            this.qualityProfileCollection.fetch();
+
+            this.itemViewOptions = { qualityProfiles: this.qualityProfileCollection };
+        }
+    });
+});
\ No newline at end of file
diff --git a/UI/Series/Index/Posters/ItemTemplate.html b/UI/Series/Index/Posters/ItemTemplate.html
new file mode 100644
index 000000000..3826996d5
--- /dev/null
+++ b/UI/Series/Index/Posters/ItemTemplate.html
@@ -0,0 +1,29 @@
+
+    
+        
+            
+                 +
+            
+
+            
{{title}}
+
+            
+                {{#if isContinuing}}
+                    {{#if bestDateString}}
+                        {{bestDateString}}
+                    {{else}}
+                        {{statusText}}
+                    {{/if}}
+                    Season {{seasonCount}}
+                {{else}}
+                    {{seasonCount}} Seasons
+                {{/if}}
+            
+
+            
+                
+                
+            
+        
+    
+