small fix
diff --git a/web_app/__init__.py b/web_app/__init__.py
index 3f4d38a..4936888 100644
--- a/web_app/__init__.py
+++ b/web_app/__init__.py
@@ -71,7 +71,7 @@
 
     for build in collect_builds():
         d = {}
-        d["name"] = build['type']
+        d["type"] = build['type']
         d["url"] = url_for("render_test", test_name=build['type'])
         d["date"] = build['date']
         d["name"] = build['name']
diff --git a/web_app/templates/index.html b/web_app/templates/index.html
index ec7f21c..42df1a1 100644
--- a/web_app/templates/index.html
+++ b/web_app/templates/index.html
@@ -16,7 +16,7 @@
             {% for test in tests %}
             <tr>
                 <td>
-                      <a href="{{ test.url }} ">{{ test.name }}</a>
+                      <a href="{{ test.url }} ">{{ test.type }}</a>
                 </td>
                 <td>
                       {{ test.name }}