diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-07-05 22:13:42 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-07-05 22:13:42 +0000 |
commit | 4afd2ef4324be7f35a126b89935a2932ed0373aa (patch) | |
tree | a61cfca1488ea954278f8acb0e5b696c7f05c769 /UI | |
parent | 859ae950bebed02d0d3d6d0ab2341629d242d236 (diff) |
Removing debugging code accidently left in
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2187 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI')
-rw-r--r-- | UI/payments/payments_detail.html | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/UI/payments/payments_detail.html b/UI/payments/payments_detail.html index 6419be4b..1b142aa2 100644 --- a/UI/payments/payments_detail.html +++ b/UI/payments/payments_detail.html @@ -188,7 +188,7 @@ END ?>"><?lsmb r.contact_name ?></span></td> <td class="invoice"><?lsmb r.total_due ?> <?lsmb currency ?></td> - <td class="payment"> + <td class="payment" class="details_select"> <?lsmb INCLUDE input element_data = { name = "paid_$r.contact_id" value = "some" @@ -214,7 +214,7 @@ </tr> <tr class="listrow<?lsmb rc ?>"> <td class="invoice_detail_list" colspan="3"> - <table id = "invoice_data_table_<?lsmb r.contact_id ?>" width="100%"> + <table id = "invoice_data_table_<?lsmb r.contact_id ?>" width="100%" class = "detail_table_visible"> <tr class="listheading"> <th class="invoice_date_list"><?lsmb text('Date') ?> </th> @@ -291,6 +291,26 @@ class = 'submit' name = 'action' } ?> + <?lsmb IF can_print ?> + <?lsmb INCLUDE select element_data = { + name = "media" + class = "select" + options = media_options + value = media + } ?> + <?lsmb INCLUDE select element_data = { + name = "format" + class = "select" + options = format_options + value = format + } ?> + <?lsmb INCLUDE button element_data = { + text = text('Print') + value = 'print' + class = 'submit' + name = 'action' + } ?> + <?lsmb END # IF can_print ?> </form> </body> </html> |