diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-24 17:44:51 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-24 17:44:51 +0000 |
commit | eedad02e621755aa269a6728364fa2ef07f6bca9 (patch) | |
tree | e56cb7ebc28954055603056c514dd3c4c62b02d0 /templates/German-pick_list.html | |
parent | 1eb75f0d6e9074d96445c810267aebe415b1b2d7 (diff) |
Changed all templates to the new syntax
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@142 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'templates/German-pick_list.html')
-rwxr-xr-x | templates/German-pick_list.html | 98 |
1 files changed, 49 insertions, 49 deletions
diff --git a/templates/German-pick_list.html b/templates/German-pick_list.html index 224293f0..fc6cf417 100755 --- a/templates/German-pick_list.html +++ b/templates/German-pick_list.html @@ -1,17 +1,17 @@ <body bgcolor=ffffff> -<table width=100%> +<table width=100 ?> <tr> <td width=10> </td> <td> - <table width=100%> + <table width=100 ?> <tr> <td> <h4> - <%company%> - <br><%address%> + <?lsmb company ?> + <br><?lsmb address ?> </h4> </td> @@ -19,8 +19,8 @@ <td align=right> <h4> - Tel: <%tel%> - <br>Fax: <%fax%> + Tel: <?lsmb tel ?> + <br>Fax: <?lsmb fax ?> </h4> </td> </tr> @@ -41,35 +41,35 @@ <table width=100% callspacing=0 cellpadding=0> <tr bgcolor=000000> <th width=50% align=left><font color=ffffff>Ship To:</th> - <th width=50%> </th> + <th width=50 ?> </th> </tr> <tr valign=top> - <td><%shiptoname%> - <br><%shiptoaddress1%> - <%if shiptoaddress2%> - <br><%shiptoaddress2%> - <%end shiptoaddress2%> - <br><%shiptocity%> <%shiptostate%> <%shiptozipcode%> - <%if shiptocountry%> - <br><%shiptocountry%> - <%end shiptocountry%> + <td><?lsmb shiptoname ?> + <br><?lsmb shiptoaddress1 ?> + <?lsmb if shiptoaddress2 ?> + <br><?lsmb shiptoaddress2 ?> + <?lsmb end shiptoaddress2 ?> + <br><?lsmb shiptocity ?> <?lsmb shiptostate ?> <?lsmb shiptozipcode ?> + <?lsmb if shiptocountry ?> + <br><?lsmb shiptocountry ?> + <?lsmb end shiptocountry ?> </td> <td> - <%if shiptocontact%> - <br>Attn: <%shiptocontact%> - <%end shiptocontact%> + <?lsmb if shiptocontact ?> + <br>Attn: <?lsmb shiptocontact ?> + <?lsmb end shiptocontact ?> - <%if shiptophone%> - <br>Tel: <%shiptophone%> - <%end shiptophone%> + <?lsmb if shiptophone ?> + <br>Tel: <?lsmb shiptophone ?> + <?lsmb end shiptophone ?> - <%if shiptofax%> - <br>Fax: <%shiptofax%> - <%end shiptofax%> + <?lsmb if shiptofax ?> + <br>Fax: <?lsmb shiptofax ?> + <?lsmb end shiptofax ?> - <%shiptoemail%> + <?lsmb shiptoemail ?> </td> </tr> </table> @@ -94,20 +94,20 @@ </tr> <tr> - <td><%invnumber%> </td> - <td><%ordnumber%> </td> - <%if shippingdate%> - <td><%shippingdate%></td> - <%end shippingdate%> - - <%if not shippingdate%> - <td><%transdate%></td> - <%end shippingdate%> - - <td><%employee%> </td> - <td><%warehouse%> </td> - <td><%shippingpoint%> </td> - <td><%shipvia%> </td> + <td><?lsmb invnumber ?> </td> + <td><?lsmb ordnumber ?> </td> + <?lsmb if shippingdate ?> + <td><?lsmb shippingdate ?></td> + <?lsmb end shippingdate ?> + + <?lsmb if not shippingdate ?> + <td><?lsmb transdate ?></td> + <?lsmb end shippingdate ?> + + <td><?lsmb employee ?> </td> + <td><?lsmb warehouse ?> </td> + <td><?lsmb shippingpoint ?> </td> + <td><?lsmb shipvia ?> </td> </tr> </table> </td> @@ -117,7 +117,7 @@ <td> </td> <td> - <table width=100%> + <table width=100 ?> <tr bgcolor=000000> <th align=left><font color=ffffff>Pos</th> <th align=left><font color=ffffff>Number</th> @@ -128,17 +128,17 @@ <th><font color=ffffff>Bin</th> </tr> - <%foreach number%> + <?lsmb foreach number ?> <tr valign=top> - <td><%runningnumber%> - <td><%number%></td> - <td><%description%></td> - <td align=right><%qty%></td> + <td><?lsmb runningnumber ?> + <td><?lsmb number ?></td> + <td><?lsmb description ?></td> + <td align=right><?lsmb qty ?></td> <td align=right>[ ]</td> - <td><%unit%></td> - <td align=right><%bin%></td> + <td><?lsmb unit ?></td> + <td align=right><?lsmb bin ?></td> </tr> - <%end number%> + <?lsmb end number ?> </table> </td> </tr> |