How to use an AUI table for the query result
Go to the PocketQuery Administration
Go to "Templates" and click on "Add template"
Name it "AUI" and copy & paste following code into "content"
CODE<div class="table-wrap"> <table class="aui"> <thead> <tr> #foreach ($column in $columns) <th>$!column</th> #end </tr> </thead> <tbody> #foreach ($row in $result) <tr> #foreach ($column in $row) <td>$!column</td> #end </tr> #end </tbody> </table> </div>
Go to a query and select "AUI" as template