DQmaker
/
admin
[% USE Comma %]
History
date
count
[% WHILE (item = history.next) %]
[% item.get_column('date') %]
[% item.get_column('count') | comma %]
[% END # WHILE %]
[% listing_text = { "0" => 'private', "1" => 'public (not checked)', "2" => 'public (checked)', } %]
Summary
listing
count
[% total = 0; WHILE (item = summary.next) %]
[% item.listing %] - [% listing_text.${item.listing} %]
[% item.get_column('count') | comma %]
[% total = total + item.get_column('count'); END # WHILE %]
total
[% total | comma %]
Shotgun
Not checked yet
[% i = 0; WHILE (item = rs.next); i = i + 1 %]
...
[% END # WHILE %]