GUI -- Created initial device view

Change-Id: Ie9b2a4e743d7a8070c3dfe736ad5a953547bd2f9
diff --git a/web/gui/src/main/webapp/app/onos.js b/web/gui/src/main/webapp/app/onos.js
index 2941f17..8f4a618 100644
--- a/web/gui/src/main/webapp/app/onos.js
+++ b/web/gui/src/main/webapp/app/onos.js
@@ -30,6 +30,7 @@
         // NOTE: 'ov' == 'Onos View'...
         'ovSample',
         'ovTopo',
+        'ovDevice',
         // (end of view modules)
 
         // core modules...
@@ -81,6 +82,11 @@
                     controllerAs: 'ctrl',
                     templateUrl: 'view/topo/topo.html'
                 })
+                .when('/device', {
+                    controller: 'OvDeviceCtrl',
+                    controllerAs: 'ctrl',
+                    templateUrl: 'view/device/device.html'
+                })
                 .otherwise({
                     redirectTo: '/'
                 })