diff --git a/inventory_provider/static/interfaces.html b/inventory_provider/static/interfaces.html
index 80ca1c39c1566406bc9acd27198ea2f4a15c4cf9..e4c59af9ef7a17d4d536de2eb833e69d291a8b0e 100644
--- a/inventory_provider/static/interfaces.html
+++ b/inventory_provider/static/interfaces.html
@@ -9,18 +9,19 @@
   <body>
 
     <div ng-controller="interfaces">
-      <h2>Interfaces</h2>
-      <div>
-      <select
-              ng-options="r for r in routers"
-              ng-change="update_interfaces()"
-              ng-model="router"></select>
-      <select
-              ng-options="i for i in interfaces"
-              ng-change="update_status()"
-              ng-model="interface">
-      </select>
-      </div>
+        <div class="column">
+          <p><strong>interfaces</strong></p>
+          <ul>
+            <li ng-repeat="i in interfaces">{{i.router}}:{{i.name}}
+              <ul>
+                <li>{{i.description}}</li>
+                <li ng-repeat="v4 in i.ipv4">v4: {{v4}}</li>
+                <li ng-repeat="v6 in i.ipv6">v6: {{v6}}</li>
+              </ul>
+            </li>
+          </ul>
+          <!--div class="raw">{{interfaces}}</div-->
+    </div>
 
       <div>
         STATUS: {{status}}
diff --git a/inventory_provider/static/interfaces.js b/inventory_provider/static/interfaces.js
index 499350b2567bc0295ad6576d283359bdff6c1912..63ab9939fdf58148bd49631002ff40552d966c28 100644
--- a/inventory_provider/static/interfaces.js
+++ b/inventory_provider/static/interfaces.js
@@ -12,12 +12,13 @@ myApp.controller('interfaces', function($scope, $http) {
 
     $http({
         method: 'GET',
-        url: window.location.origin + "/data/routers"
+        url: window.location.origin + "/data/interfaces"
     }).then(
-        function(rsp) {$scope.routers = rsp.data;},
+        function(rsp) {$scope.interfaces = rsp.data;},
         function(rsp) {$scope.routers = ['error'];}
     );
 
+    /*
     $scope.update_interfaces = function() {
 
         $http({
@@ -47,5 +48,6 @@ myApp.controller('interfaces', function($scope, $http) {
             function(rsp) {$scope.interfaces = 'query error';}
         );
     }
+    */
 
 });
\ No newline at end of file
diff --git a/inventory_provider/static/style.css b/inventory_provider/static/style.css
index a72ff44af879d3d178cce21668484bca5bae43fa..b234cbe2d3b0a09e2a4a2efef909588cd0ddedc1 100644
--- a/inventory_provider/static/style.css
+++ b/inventory_provider/static/style.css
@@ -1,6 +1,6 @@
 .column {
   float: left;
-  width: 33.33%;
+  width: 100%%;
 }
 
 /* Clear floats after the columns */