summaryrefslogtreecommitdiff
path: root/UI/create_batch.html
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-07-20 19:35:51 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-07-20 19:35:51 +0000
commit33da5bb969ad49cef8f1d638ea72b094ca79f442 (patch)
tree7034b9c57861c37bb453402e1d84b900db44e9cf /UI/create_batch.html
parent31aedcd6bece723c6fcb9dcf1a257385c55ccabb (diff)
Adding batch creation screen.
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1432 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/create_batch.html')
-rw-r--r--UI/create_batch.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/UI/create_batch.html b/UI/create_batch.html
new file mode 100644
index 00000000..49d484b1
--- /dev/null
+++ b/UI/create_batch.html
@@ -0,0 +1,36 @@
+<!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>LedgerSMB Version SVN Trunk</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/ledgersmb.css" type="text/css" title="LedgerSMB stylesheet" />
+ <link rel="stylesheet" href="css/scripts/create_batch.css" type="text/css" title="LedgerSMB stylesheet" />
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+
+ <meta name="robots" content="noindex,nofollow" />
+</head>
+
+<body>
+<form name="create_batch" method="post">
+<div class="labelledinput">
+ <div class="label">
+ <?lsmb text("Batch Number") ?>
+ </div>
+ <div class="value">
+ <input name="batchnumber" type="text" value="<?lsmb batchnumber ?>">
+ </div>
+<div class="labelledinput">
+ <div class="label">
+ <?lsmb text("Description") ?>
+ </div>
+</div>
+<?lsmb FOREACH item = _hidden ?>
+<input type=hidden name="<?lsmb item.name ?>" value="<?lsmb item.value ?>">
+<?lsmb END ?>
+</form>
+</body>
+</html>