diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerController.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerController.js
index 5b2108166ca013ba5c5eabc36abc48e3c65ef4e6..64a7af7ba9556f3130b5f02aaec63afcf8276398 100644
--- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerController.js
+++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerController.js
@@ -23,7 +23,7 @@ function TrashManagerController(mainController) {
 		var _this = this;
 		mainController.serverFacade.listDeletions(function(data) {
 			if(data.result && data.result.length > 0) {
-				//Fill Model
+				_this._trashManagerModel.deletions = data.result;
 			}
 			_this._trashManagerView.repaint($container);
 		});
diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerModel.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerModel.js
index d43ebb7858733eb782e75dca461a3597a3782f6e..994aaaa2ec3b63c37b0caa5cfe4e5615543fe374 100644
--- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerModel.js
+++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerModel.js
@@ -15,5 +15,5 @@
  */
 
 function TrashManagerModel() {
-
+	this.deletions = null;
 }
\ No newline at end of file
diff --git a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerView.js b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerView.js
index eaf33f6435319c6bb067c167a69c0474ddfe2430..5072e9f855c78abc2e35c83ebbb6964ff91b5fdf 100644
--- a/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerView.js
+++ b/plasmid/source/core-plugins/newbrowser/1/as/webapps/newbrowser/html/js/views/TrashManager/TrashManagerView.js
@@ -20,6 +20,17 @@ function TrashManagerView(trashManagerController, trashManagerModel) {
 	
 	this.repaint = function($container) {
 		$container.empty();
-		$container.append("Hello Trashcan!");
+		
+		var $containerColumn = $("<form>", { 
+			"class" : FormUtil.formColumClass + " form-horizontal", 
+			'role' : "form", 
+			"action" : "javascript:void(0);", 
+			"onsubmit" : ""
+		});
+		
+		var $trashIcon = $("<span>", { 'class' : 'glyphicon glyphicon-trash'});
+		$containerColumn.append($("<h2>").append($trashIcon).append(" Trashcan"));
+		
+		$container.append($containerColumn);
 	}
 }
\ No newline at end of file