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/Italian-packing_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/Italian-packing_list.html')
-rwxr-xr-x | templates/Italian-packing_list.html | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/templates/Italian-packing_list.html b/templates/Italian-packing_list.html index 4a451d82..edd129d3 100755 --- a/templates/Italian-packing_list.html +++ b/templates/Italian-packing_list.html @@ -1,18 +1,18 @@ <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> @@ -30,11 +30,11 @@ <td align=right> <table> <tr> - <th align=right>Data</th><td width=10> </td><td><%invdate%></td> + <th align=right>Data</th><td width=10> </td><td><?lsmb invdate ?></td> </tr> <tr> - <th align=right>Numero</th><td></td><td><%invnumber%></td></tr> + <th align=right>Numero</th><td></td><td><?lsmb invnumber ?></td></tr> </tr> <tr> @@ -47,16 +47,16 @@ <tr> <td> - <table width=100%> + <table width=100 ?> <tr bgcolor=000000> <th align=left><font color=ffffff>Inviare a:</th> </tr> <tr> - <td><%shiptoname%> - <br><%shiptoaddr1%> - <br><%shiptoaddr2%> - <br><%shiptoaddr3%> + <td><?lsmb shiptoname ?> + <br><?lsmb shiptoaddr1 ?> + <br><?lsmb shiptoaddr2 ?> + <br><?lsmb shiptoaddr3 ?> </td> </tr> </table> @@ -70,7 +70,7 @@ <tr> <td> - <table width=100%> + <table width=100 ?> <tr bgcolor=000000> <th align=left><font color=ffffff>Numero</th> <th align=left><font color=ffffff>Descrizione</th> @@ -78,14 +78,14 @@ <th> </th> </tr> -<%foreach number%> +<?lsmb foreach number ?> <tr valign=top> - <td><%number%></td> - <td><%description%></td> - <td align=right><%qty%></td> - <td><%unit%></td> + <td><?lsmb number ?></td> + <td><?lsmb description ?></td> + <td align=right><?lsmb qty ?></td> + <td><?lsmb unit ?></td> </tr> -<%end number%> +<?lsmb end number ?> <tr> <td colspan=4><hr noshade></td> @@ -97,12 +97,12 @@ <tr> <td> - <table width=100%> + <table width=100 ?> <tr valign=top> <td>Note</td> - <td><%notes%></td> + <td><?lsmb notes ?></td> <td align=right> - <%shippingpoint%> + <?lsmb shippingpoint ?> </td> </tr> |