Support for data munging in User Reports

This commit is contained in:
Oliver Gorwits
2014-03-02 23:29:09 +00:00
parent 3ff9f3c587
commit 32771b5ada
7 changed files with 53 additions and 19 deletions

View File

@@ -7,10 +7,10 @@
</tr>
</thead>
</tbody>
[% WHILE (row = results.next) %]
[% FOREACH row IN results %]
<tr>
[% FOREACH col IN columns %]
<td>[% row.get_column(col) | html_entity %]</td>
<td>[% row.item(col) | html_entity %]</td>
[% END %]
</tr>
[% END %]