Revision 95772145

b/ui/static/main.css
2378 2378
    width: 100px !important;
2379 2379
}
2380 2380

  
2381
/* group column commented out for v0.5
2381 2382
div.list table thead .vmgroup {
2382 2383
    width: 40px !important;
2383 2384
}
2385
*/
2384 2386

  
2385 2387
div.list table thead .vmstatus {
2386 2388
    width: 50px !important;
2387 2389
}
2388 2390

  
2389 2391
div.list table thead .vmname {
2390
    width: 70px !important;
2392
    width: 110px !important;
2391 2393
}
2392 2394

  
2393 2395
.spinner, .action-indicator {
b/ui/templates/machines_list.html
71 71
                    <th class="vmos">{% trans "OS" %}</th>
72 72
                    <th class="vmname">{% trans "Name" %}</th>
73 73
                    <th class="vmflavor">{% trans "Flavor" %}</th>
74
                    <!--  Group column is commented out for v0.5
74 75
                    <th class="vmgroup">{% trans "Group" %}</th>
76
                    -->
75 77
                    <th class="vmstatus">{% trans "Status" %}</th>
76 78
                </tr>
77 79
            </thead>
......
296 298
                    tableData[current][1] = "<span class=imagetag>" + osTag + "</span>" + imgStr;
297 299
                    tableData[current][2] = "<a class=name><span class=name>" + server.name.substring(0,60) + "</span></a>";
298 300
                    //tableData[current][4] = "group"; //TODO
299
                    tableData[current][5] = "<span class=status>" + STATUSES[server.status] + "</span>";
301
                    tableData[current][4] = "<span class=status>" + STATUSES[server.status] + "</span>";
300 302
                    vmTable.fnUpdate(tableData[current],current);
301 303
                    setTimeout("$('#machinesview .list #"+server.id+"').parent().parent().find('.list-logo').attr('src','static/icons/machines/small/" + osTag + "-off.png')", 1600);
302 304
                } else if ( STATUSES[server.status] == server_row.find('span.status').text()) {
......
309 311
                    tableData[current][1] = "<span class=imagetag>" + osTag + "</span>" + imgStr;
310 312
                    tableData[current][2] = "<a class=name><span class=name>" + server.name.substring(0,60) + "</span></a>";
311 313
                    //tableData[current][4] = "group"; //TODO
312
                    tableData[current][5] = "<span class=status>" + STATUSES[server.status] + "</span>";
314
                    tableData[current][4] = "<span class=status>" + STATUSES[server.status] + "</span>";
313 315
                    vmTable.fnUpdate(tableData[current],current);
314 316
                    setTimeout("$('#machinesview .list #"+server.id+"').parent().parent().find('.list-logo').attr('src','static/icons/machines/small/" + osIcon + "')", 1600);
315 317
                }
......
351 353
                    " title=" + osTag + ">",
352 354
                "<a class=name><span class=name>" + server.name.substring(0,60) + "</span></a>",
353 355
                "<a class=flavor><span>"+ flavorLabel + "</span></a>",
354
                "group",
356
                //"group",
355 357
                "<span class=status>" + STATUSES[server.status] + "</span>"
356 358
            ]);
357 359
        }

Also available in: Unified diff