<div class="list">
<table id="matrix" width="100%" >
<tr>
- [% FOR col = classmetadata.columns.list;
+ [% FOR col = classmetadata.list_columns.list;
NEXT IF col == "id";
"<th>";
SET additional = "?order=" _ col;
#%]
[% MACRO display_line(item) BLOCK;
- FOR col = classmetadata.columns;
+ FOR col = classmetadata.list_columns;
NEXT IF col == "id";
"<td>";
IF col == "url" AND item.url;
END;
"</td>";
END;
- '<td class="actions" nowrap="nowrap">';
+ '<td class="actions">';
button(item, "edit");
button(item, "delete");
"</td>";