final move of files
[web.mtrack] / MTrackWeb / templates / reports.html
1
2 <h1>Available Reports</h1>
3
4 <p>
5   The reports below are constructed using SQL.  You may also
6   use the <a href="{baseURL}/Query">Custom Query</a>
7   page to create a report on the fly.
8 </p>
9
10 <table>
11     <tr>
12       <th>Report</th>
13       <th>Title</th>
14     </tr>
15     <tr flexy:foreach="rows,row">
16         <td><a href="{baseURL}/Report/{row.id}">{row.id}</a>
17         <td><a href="{baseURL}/Report/{row.id}">{row.summary}</a>
18     </tr>
19 </table>
20
21 <form flexy:if="canCreate" action="report.php" method="get">
22     <button type="submit" name="edit">Create Report</button>
23 </form>