diff --git a/dist/views/dataModelView.html b/dist/views/dataModelView.html
index 3efb963bcfc4adcb7b087aca8d390108af41799a..32748d9a061e18c3f9f8a842ee98b0e18739c05c 100644
--- a/dist/views/dataModelView.html
+++ b/dist/views/dataModelView.html
@@ -26,11 +26,14 @@
     <div class="analyzer-content">
         <table class="data-model-table">
             <tbody>
-                <tr class="data-model-table-key-row" ng-repeat="datapoint in datapoints">
+                <tr class="data-model-table-key-row" ng-repeat-start="datapoint in datapoints">
                     <td><span class="data-model-table-expand-icon"></span></td>
                     <td>{{datapoint.key}}</td>
                     <td>{{datapoint.description}}</td>
                 </tr>
+                <tr class="data-model-table-details-row" ng-repeat-end>
+                    <td colspan="3">This is just a test</td>
+                </tr>
             </tbody>
         </table>
     </div>
diff --git a/scss/main.scss b/scss/main.scss
index cb461a6c82abf4c0177a0b63ff4cf2af985c6833..78f59b1a355de9a64f23ab2d6d6a4080cfb344f6 100644
--- a/scss/main.scss
+++ b/scss/main.scss
@@ -312,7 +312,7 @@ footer div {
 }
 
 .analyzer-title-text {
-    padding-top: 7px;
+    padding-top: 5px;
     display: inline-block;
 }
 
@@ -381,3 +381,11 @@ footer div {
     @extend .octicon;
     @extend .octicon-triangle-right;
 }
+
+.data-model-table-details-row td {
+    padding-left: 50px;
+    padding-right: 50px;
+    padding-top: 10px;
+    padding-bottom: 10px;
+    background-color: #ffffff;
+}