diff --git a/py-dashboard/GhostRequest.py b/py-dashboard/GhostRequest.py
index a0579afb..58ceefa4 100644
--- a/py-dashboard/GhostRequest.py
+++ b/py-dashboard/GhostRequest.py
@@ -292,6 +292,7 @@ class GhostRequest:
         images = list()
         times = list()
         test_pass_fail = list()
+        devices = dict()
 
         for target_folder in target_folders:
             try:
@@ -304,6 +305,7 @@ class GhostRequest:
                 dut_sw = csvreader.get_column(df, 'dut-sw-version')[0]
                 dut_model = csvreader.get_column(df, 'dut-model-num')[0]
                 dut_serial = csvreader.get_column(df, 'dut-serial-num')[0]
+                devices[csv_testbed] = [dut_hw, dut_sw, dut_model, dut_serial]
                 times_append = csvreader.get_column(df, 'Date')
                 for target_time in times_append:
                     times.append(float(target_time) / 1000)
@@ -422,9 +424,23 @@ class GhostRequest:
             influxdb.post_to_influx(short_description, numeric_score, tags, date)
 
         text = 'Testbed: %s
' % testbeds[0]
-        dut_table = '
| DUT_HW | DUT_SW | DUT model | DUT Serial | Tests passed | Tests failed | 
' \
-                    '| %s | %s | %s | %s | %s | %s | 
' % (
-                    dut_hw, dut_sw, dut_model, dut_serial, test_pass_fail_results['PASS'],
+        dut_table = '' \
+                    '| Device' \
+                    ' | DUT_HW' \
+                    ' | DUT_SW' \
+                    ' | DUT model' \
+                    ' | DUT Serial' \
+                    ' | Tests passed' \
+                    ' | Tests failed | 
'
+        for device, data in devices.items():
+            dut_table = dut_table + '| %s' \
+                                    ' | %s' \
+                                    ' | %s' \
+                                    ' | %s' \
+                                    ' | %s' \
+                                    ' | %s' \
+                                    ' | %s | 
' % (
+                    device, data[0], data[1], data[2], data[3], test_pass_fail_results['PASS'],
                     test_pass_fail_results['FAIL'])
         text = text + dut_table