diff options
Diffstat (limited to 'UI/ca-list-selector.html')
-rw-r--r-- | UI/ca-list-selector.html | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/UI/ca-list-selector.html b/UI/ca-list-selector.html new file mode 100644 index 00000000..0931dcdc --- /dev/null +++ b/UI/ca-list-selector.html @@ -0,0 +1,79 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <title><?lsmb form.titlebar ?></title> + <meta http-equiv="Pragma" content="no-cache" /> + <meta http-equiv="Expires" content="-1" /> + <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> + <link rel="stylesheet" href="css/<?lsmb form.stylesheet ?>" type="text/css" title="LedgerSMB stylesheet" /> + + <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> + + <meta name="robots" content="noindex,nofollow" /> + +</head> +<?lsmb PROCESS elements.html ?> +<body> + +<form method="post" action="ca.pl"> + +<?lsmb FOREACH hidden IN ['accno', 'description', 'sort', 'oldsort', 'accounttype', 'gifi_accno', 'gifi_description']; + PROCESS input element_data={type => 'hidden', name => hidden, value => form.$hidden}; END ?> + +<table border="0" width="100%"> + <tr><th class="listtop"><?lsmb form.title ?></th></tr> + <tr height="5"></tr> + <tr valign="top"> + <td> + <table> + + <tr> + <th align="right"><?lsmb text('From') ?></th> + <td><?lsmb PROCESS input element_data={class => 'date', name => 'fromdate' size => '11', title="yyyy-mm-dd"} ?></td> + <th align="right"><?lsmb text('To') ?></th> + <td><?lsmb PROCESS input element_data={class => 'date', name => 'todate' size => '11', title="yyyy-mm-dd"} ?></td> + </tr> + +<?lsmb IF form.all_department ?> + <tr> + <th align="right"><?lsmb text('Department') ?></th> + <td colspan="3"> + <?lsmb PROCESS select element_data=selectdepartment ?></td> + </tr> +<?lsmb END ?> +<?lsmb IF form.all_years ?> + <tr> + <th align="right"><?lsmb text('Period') ?></th> + <td colspan="3"> + <?lsmb PROCESS select element_data=selectmonth ?> + <?lsmb PROCESS select element_data=selectyear ?> + <?lsmb FOREACH button IN intervals ?> + <?lsmb PROCESS input element_data=button; button.text ?> + <?lsmb END ?> + </td> + </tr> +<?lsmb END ?> + + <tr> + <th align="right"><?lsmb text('Include in Report') ?></th> + <td colspan="3"> + <?lsmb FOREACH check IN includes; + PROCESS input element_data=check; check.text; END ?> + </td> + </tr> + </table> + </td> + </tr> + <tr><td><hr size=3 noshade></td></tr> +</table> + +<?lsmb FOREACH hidden IN ['login', 'path', 'sessionid']; + PROCESS input element_data={type => 'hidden', name => hidden, value => form.$hidden}; END ?> + +<br /> +<?lsmb PROCESS button element_data={class => "submit", name => "action", value => "list_transactions", text => text('List Transactions')} ?> +</form> + +</body> +</html> |