diff options
author | aurynn_cmd <aurynn_cmd@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-07-25 22:24:06 +0000 |
---|---|---|
committer | aurynn_cmd <aurynn_cmd@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-07-25 22:24:06 +0000 |
commit | f9661818f7f77d88ad9b36f6b9dce0e9482977d4 (patch) | |
tree | 621b65e9443220cb7b340409c6f6874bbe826c37 /UI | |
parent | 0003863c90637aa352d330895c4ff2d1a4a00cc8 (diff) |
Reconciliation changes. Moving code around, copying Reconciliation to DBObject. Bugsquishes and work on testing.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2221 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI')
-rw-r--r-- | UI/Reconciliation/list.html | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/UI/Reconciliation/list.html b/UI/Reconciliation/list.html index 48d9bb31..720f140d 100644 --- a/UI/Reconciliation/list.html +++ b/UI/Reconciliation/list.html @@ -1,12 +1,20 @@ -<div> - <table> - <td> - <tr>ID</tr> - <tr>Account</tr> - <tr></tr> - </td> - <?lsmb FOR result IN results?> +<?lsmb import base.html?> +<div class="content"> + <table> + <tr> + <td>ID</td> + <td>Account</td> + <td>Date Range</td> + <td>Total</td> + </tr> + <?lsmb FOR item IN reports?> + <tr> + <td><a href="recon.pl?action=report&report_id=<?lsmb item.report_id?>"><?lsmb item.report_id?></a></td> + <td><?lsmb item.account?></td> + <td><?lsmb item.range?></td> + <td><?lsmb item.total?></td> + </tr> <?lsmb END?> </table> </div>
\ No newline at end of file |