rename dir from content to ajax

This commit is contained in:
Oliver Gorwits
2012-01-08 11:20:16 +00:00
parent b2ff5050ff
commit 0008ebeffd
3 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
<table class="bordered-table condensed-table zebra-striped">
<thead>
<tr>
[% FOREACH col IN columns %]
<th>[% col.label %]</th>
[% END %]
</tr>
</thead>
</tbody>
[% WHILE (row = results.next) %]
<tr>
[% FOREACH col IN columns %]
[% SET val = row %]
[% FOREACH method IN col.key.split('\.') %]
[% SET val = val.$method %]
[% END %]
<td><a class="nd_linkcell nd_stealthlink" href="[% hyperlink(row) %]">[% val %]</a></td>
[% END %]
</tr>
[% END %]
</tbody>
</table>