diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-12-17 23:22:43 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-12-17 23:22:43 +0000 |
commit | 32ec9551c2c00aa85c4479451e5d4d55d09679e0 (patch) | |
tree | 4c70b49ad3a9a1ae5b9754596584163c505091ab /UI | |
parent | b707449f9197e3c63c8fa00a1edeb973dacd5262 (diff) |
Batch enhancements
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1980 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI')
-rw-r--r-- | UI/batch/filter.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/UI/batch/filter.html b/UI/batch/filter.html new file mode 100644 index 00000000..3cb69089 --- /dev/null +++ b/UI/batch/filter.html @@ -0,0 +1,73 @@ +<?lsmb INCLUDE "ui-header.html" + include_stylesheet = [ + "css/global.css" + stylesheet + ] + titlebar = text('Batch Selection') # ' +?><?lsmb PROCESS "elements.html" ?> +<body> +<form action="vouchers.pl" method="post"> +<div class="listtop" id="title_div"><?lsmb text('Batch Selection') ?></div> +<div class="input" id="batch_class_div"> + <?lsmb INCLUDE select element_data = { + label = text('Batch Type') # ' + options = batch_classes + value_attr = "id" + text_attr = "class" + name = "class_id" + default_values = [class_id] + } ?> + <?lsmb INCLUDE input element_data = { + label = text("Approved") + name = "approved" + value = '1' + type = "checkbox" + } ?> +</div> +<div class="input" id="entered_by_div"> + <?lsmb INCLUDE select element_data = { + label = text('Created By') # ' + options = batch_users + value_attr = "entity_id" + text_attr = "username" + name = "created_by" + default_values = [created_by] + } ?></div> +<div class="input" id="description_div"> + <?lsmb INCLUDE input element_data = { + label = text('Description') + size = 20 + value = description + name = "description" + } ?> + </div> +<div class="input" id="amounts_div"> + <?lsmb INCLUDE input element_data = { + label = "Minimum Value" + name = "amount_gt" + class = "numeric" + size = 20 + value = amount_gt + type = "text" + } ?> + <?lsmb INCLUDE input element_data = { + label = "Maximum Value" + name = "amount_lt" + value = amount_lt + size = 20 + class = "numeric" + type = "text" + } ?> + </div> +<div class="input" id="buttons_div"> + <?lsmb INCLUDE button element_data = { + text = text('Search') + name = "action" + value = "list_batches" + class = "submit" + type = "submit" + } ?> </div> +</form> +</body> + +</html> |