summaryrefslogtreecommitdiff
path: root/UI/reconciliation/list.html
blob: 720f140d95f730b3c3b9e9d7998f5d31db792c04 (plain)
  1. <?lsmb import base.html?>
  2. <div class="content">
  3. <table>
  4. <tr>
  5. <td>ID</td>
  6. <td>Account</td>
  7. <td>Date Range</td>
  8. <td>Total</td>
  9. </tr>
  10. <?lsmb FOR item IN reports?>
  11. <tr>
  12. <td><a href="recon.pl?action=report&amp;report_id=<?lsmb item.report_id?>"><?lsmb item.report_id?></a></td>
  13. <td><?lsmb item.account?></td>
  14. <td><?lsmb item.range?></td>
  15. <td><?lsmb item.total?></td>
  16. </tr>
  17. <?lsmb END?>
  18. </table>
  19. </div>