diff --git a/beat/web/backend/templates/backend/scheduler.html b/beat/web/backend/templates/backend/scheduler.html
index 00a71c4ee3a554afe817a5c6b78f36736a6f0ba3..04e89e968ce12c90d6a66e1897d67dfa9fface0d 100644
--- a/beat/web/backend/templates/backend/scheduler.html
+++ b/beat/web/backend/templates/backend/scheduler.html
@@ -181,8 +181,9 @@
               <tr>
                 <th class="status"></th>
                 <th>Name</th>
-                <th>Available/Total Cores</th>
-                <th>Memory (in Gb)</th>
+                <th>Available/Total Cores (In use)</th>
+                <th>Memory (in Gb) (In use)</th>
+                <th>Last Updated</th>
                 <th>Info</th>
               </tr>
             </thead>
@@ -199,8 +200,9 @@
                   </a>
                 </td>
                 <td><a title="Click to admin" data-toggle="tooltip" data-placement="top" href="{{ obj.get_admin_change_url }}">{{ obj.name }}</a></td>
-                <td>{{ obj.available_cores }} / {{ obj.cores }}</td>
-                <td>{% widthratio obj.memory 1024 1 %}</td>
+                <td>{{ obj.available_cores }} / {{ obj.cores }} ({{ obj.used_cores }}%)</td>
+                <td>{% widthratio obj.memory 1024 1 %} ({{ obj.used_memory }}%)</td>
+                <td>{{ obj.updated|date:"H:i:s O, jS F Y" }}</td>
                 <td>{{ obj.info }}</td>
                 {% endfor %}
             </tbody>