build name added
diff --git a/test_results/Perf-1-env-10-02-14.json b/test_results/Perf-1-env-10-02-14.json
index 81ab76b..ad17cd3 100644
--- a/test_results/Perf-1-env-10-02-14.json
+++ b/test_results/Perf-1-env-10-02-14.json
@@ -25,6 +25,7 @@
         "randwrite s 256k": [3277, 146],
         "iso_md5": "bla bla",
         "type": "GA",
+        "name": "GA - 6.0 GA",
         "write a 64k": [24555, 1006],
         "write a 1024k": [24069, 660]
     },
@@ -54,6 +55,7 @@
         "randwrite s 256k": [3628, 433],
         "iso_md5": "bla bla",
         "type": "master",
+        "name": "6.1 Dev",
         "write a 64k": [25089, 790],
         "write a 1024k": [29226, 8624]
     },
@@ -82,7 +84,8 @@
         "randread a 1024k": [31379, 25667],
         "randwrite s 256k": [3009, 1028],
         "iso_md5": "blsgl",
-        "type": "eswrfe",
+        "type": "Dev",
+        "name": "Some dev",
         "write a 64k": [71598, 22032],
         "write a 1024k": [84995, 34596]
     }
diff --git a/web_app/__init__.py b/web_app/__init__.py
index 88f8fac..3f4d38a 100644
--- a/web_app/__init__.py
+++ b/web_app/__init__.py
@@ -74,6 +74,7 @@
         d["name"] = build['type']
         d["url"] = url_for("render_test", test_name=build['type'])
         d["date"] = build['date']
+        d["name"] = build['name']
         data.append(d)
 
     return data
@@ -85,6 +86,7 @@
     m.build_type = build.pop("type")
     m.md5 = build.pop("iso_md5")
     m.date = build.pop("date")
+    m.date = build.pop("name")
     m.results = {k: v for k, v in build.items()}
 
     return m
diff --git a/web_app/templates/index.html b/web_app/templates/index.html
index d0729c2..ec7f21c 100644
--- a/web_app/templates/index.html
+++ b/web_app/templates/index.html
@@ -10,6 +10,7 @@
     {% block body %}
         <h2 align="center">Tests report : </h2>
         <table align="center" class="table table-striped" style="width: 70%; ">
+            <th>Build type</th>
             <th>Build name</th>
             <th> Date </th>
             {% for test in tests %}
@@ -18,6 +19,9 @@
                       <a href="{{ test.url }} ">{{ test.name }}</a>
                 </td>
                 <td>
+                      {{ test.name }}
+                </td>
+                <td>
                       {{ test.date }}
                 </td>
             </tr>
diff --git a/web_app/templates/test.html b/web_app/templates/test.html
index aba2f60..1870049 100644
--- a/web_app/templates/test.html
+++ b/web_app/templates/test.html
@@ -15,16 +15,16 @@
         <div id="images">
             <table align="center" class="table table-bordered">
                 {% for url in urls %}
-                    {% if loop.index is divisibleby 2 %}
-                        <tr>
-                            <td>
-                                <img src="{{ url }}">
-                            </td>
-                    {% else %}
-                            <td>
+                     {% if loop.index is divisibleby 2 %}
+                       <td>
                                 <img src="{{ url }}">
                             </td>
                         </tr>
+                    {% else %}
+                         <tr>
+                            <td>
+                                <img src="{{ url }}">
+                            </td>
                     {% endif %}
                 {% endfor %}
             </table>