diff options
author | ivan <ivan> | 2004-04-11 01:50:47 +0000 |
---|---|---|
committer | ivan <ivan> | 2004-04-11 01:50:47 +0000 |
commit | 76e907f24d984319b7c1e0e9374b99535a99ab43 (patch) | |
tree | 720f7cfe4527261764c2b3f90fa6ae692623c6ef /httemplate/search/report_prepaid_income.html | |
parent | 71cdb6ad901465cdc9326cfc3d3650f3aabda5aa (diff) |
update unearned revenue report based on feedback from kevin
Diffstat (limited to 'httemplate/search/report_prepaid_income.html')
-rw-r--r-- | httemplate/search/report_prepaid_income.html | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/httemplate/search/report_prepaid_income.html b/httemplate/search/report_prepaid_income.html index b85a481be..e8b6ac4b1 100644 --- a/httemplate/search/report_prepaid_income.html +++ b/httemplate/search/report_prepaid_income.html @@ -9,7 +9,29 @@ <BODY BGCOLOR="#e8e8e8"> <H1>Prepaid Income (Unearned Revenue) Report</H1> <FORM ACTION="report_prepaid_income.cgi" METHOD="post"> - Prepaid income (unearned revenue) as of <INPUT TYPE="text" NAME="date" VALUE="now"> + <TABLE> + <TR> + <TD>Prepaid income (unearned revenue) as of </TD> + <TD> + <INPUT TYPE="text" NAME="date" ID="date_text" VALUE="now"> + <IMG SRC="../images/calendar.png" ID="date_button" STYLE="cursor: pointer" TITLE="Select date"> + </TD> + </TR> + <TR> + <TD> + </TD> + <TD><i>m/d/y</i></TD> + </TR> + </TABLE> +<SCRIPT TYPE="text/javascript"> + Calendar.setup({ + inputField: "date_text", + ifFormat: "%m/%d/%Y", + button: "date_button", + align: "BR" + }); +</SCRIPT> + <INPUT TYPE="submit" VALUE="Generate report"> </BODY> </HTML> |