diff --git a/stackalytics/dashboard/static/js/driverlog-ui.js b/stackalytics/dashboard/static/js/driverlog-ui.js
index 28344b66c..fb06c8902 100644
--- a/stackalytics/dashboard/static/js/driverlog-ui.js
+++ b/stackalytics/dashboard/static/js/driverlog-ui.js
@@ -190,15 +190,15 @@ function showSummary(base_url) {
                         var master = tableData[i].releases[last_release];
                         if (master.review_url) {
                             tableData[i].ci_tested = "<a href=\"" + master.review_url +
-                                    "\" target=\"_blank\" title=\"Click for details\"><span style=\"color: #008000\">&#x2714;</span></a>";
+                                    "\" target=\"_blank\" title=\"CI is enabled on master. Click to see the latest results\"><span style=\"color: #00A000\">&#x2714;</span></a>";
                         } else {
-                            tableData[i].ci_tested = "<span style=\"color: #808080\">&#x2714;</span>";
+                            tableData[i].ci_tested = "<span style=\"color: #909090\" title=\"CI is configured, but no results observed\">&#x2714;</span>";
                         }
                     } else {
-                        tableData[i].ci_tested = "<span style=\"color: #808080\">&#x2714;</span>";
+                        tableData[i].ci_tested = "<span style=\"color: #909090\" title=\"CI is configured, but no results observed\">&#x2714;</span>";
                     }
                 } else {
-                    tableData[i].ci_tested = "<span style=\"color: darkred\">&#x2716;</span>";
+                    tableData[i].ci_tested = "<span style=\"color: darkred\" title=\"CI is not configured\">&#x2716;</span>";
                 }
 
                 var maintainers_list = [];
diff --git a/stackalytics/dashboard/templates/reports/driverlog.html b/stackalytics/dashboard/templates/reports/driverlog.html
index b34e41992..07f1c1b16 100644
--- a/stackalytics/dashboard/templates/reports/driverlog.html
+++ b/stackalytics/dashboard/templates/reports/driverlog.html
@@ -39,11 +39,6 @@
 
     <div class="drops">
 
-        <div class="drop">
-            <label for="release" title="OpenStack Release">Release</label>
-            <input type="hidden" id="release" style="width:240px" data-placeholder="Any release"/>
-        </div>
-
         <div class="drop">
             <label for="project_id" title="OpenStack Project">Project</label>
             <input type="hidden" id="project_id" style="width:240px"  data-placeholder="Any project"/>
@@ -54,6 +49,11 @@
             <input type="hidden" id="vendor" style="width:240px"  data-placeholder="Any vendor"/>
         </div>
 
+        <div class="drop">
+            <label for="release" title="OpenStack Release">Release</label>
+            <input type="hidden" id="release" style="width:240px" data-placeholder="Any release"/>
+        </div>
+
     </div>
 
     <div style="margin-top: 2em;">
@@ -63,8 +63,8 @@
                 <th>Project</th>
                 <th>Vendor</th>
                 <th>Driver</th>
-                <th>In Trunk?</th>
-                <th>CI exists?</th>
+                <th>Release</th>
+                <th>CI</th>
                 <th>Maintainer</th>
             </tr>
             </thead>