diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-04-04 02:35:26 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-04-04 02:35:26 +0000 |
commit | 5c3a962f492011bebe096a5a4b007062152df2d7 (patch) | |
tree | 4767953d3090870de43ccb992ed096545be9e4da /templates/demo/request_quotation.html | |
parent | a3a6064b492c70ecacaa5b413547deb695212487 (diff) |
First round of template changes for new TT system
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1023 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'templates/demo/request_quotation.html')
-rw-r--r-- | templates/demo/request_quotation.html | 69 |
1 files changed, 35 insertions, 34 deletions
diff --git a/templates/demo/request_quotation.html b/templates/demo/request_quotation.html index ad9b0ab2..827fdf1a 100644 --- a/templates/demo/request_quotation.html +++ b/templates/demo/request_quotation.html @@ -3,7 +3,7 @@ <table width="100%"> - <?lsmb include letterhead.html ?> + <?lsmb INCLUDE letterhead.html ?> <tr> <td width=10> </td> @@ -26,58 +26,58 @@ <tr valign=top> <td><?lsmb name ?> <br><?lsmb address1 ?> - <?lsmb if address2 ?> + <?lsmb IF address2 ?> <br><?lsmb address2 ?> - <?lsmb end address2 ?> + <?lsmb END ?> <br><?lsmb city ?> - <?lsmb if state ?> + <?lsmb IF state ?> , <?lsmb state ?> - <?lsmb end state ?> + <?lsmb END ?> <?lsmb zipcode ?> - <?lsmb if country ?> + <?lsmb IF country ?> <br><?lsmb country ?> - <?lsmb end country ?> + <?lsmb END ?> <br> - <?lsmb if contact ?> + <?lsmb IF contact ?> <br>Attn: <?lsmb contact ?> - <?lsmb end contact ?> + <?lsmb END ?> - <?lsmb if vendorphone ?> + <?lsmb IF vendorphone ?> <br>Tel: <?lsmb vendorphone ?> - <?lsmb end vendorphone ?> + <?lsmb END ?> - <?lsmb if vendorfax ?> + <?lsmb IF vendorfax ?> <br>Fax: <?lsmb vendorfax ?> - <?lsmb end vendorfax ?> + <?lsmb END ?> </td> <td><?lsmb shiptoname ?> <br><?lsmb shiptoaddress1 ?> - <?lsmb if shiptoaddress2 ?> + <?lsmb IF shiptoaddress2 ?> <br><?lsmb shiptoaddr2 ?> - <?lsmb end shiptoaddress2 ?> + <?lsmb END ?> <br><?lsmb shiptocity ?> - <?lsmb if shiptostate ?> + <?lsmb IF shiptostate ?> , <?lsmb shiptostate ?> - <?lsmb end shiptostate ?> + <?lsmb END ?> <?lsmb shiptozipcode ?> - <?lsmb if shiptocountry ?> + <?lsmb IF shiptocountry ?> <br><?lsmb shiptocountry ?> - <?lsmb end shiptocountry ?> + <?lsmb END ?> <br> - <?lsmb if shiptocontact ?> + <?lsmb IF shiptocontact ?> <br>Attn: <?lsmb shiptocontact ?> - <?lsmb end shiptocontact ?> + <?lsmb END ?> - <?lsmb if shiptophone ?> + <?lsmb IF shiptophone ?> <br>Tel: <?lsmb shiptophone ?> - <?lsmb end shiptophone ?> + <?lsmb END ?> - <?lsmb if shiptofax ?> + <?lsmb IF shiptofax ?> <br>Fax: <?lsmb shiptofax ?> - <?lsmb end shiptofax ?> + <?lsmb END ?> </td> </tr> </table> @@ -138,15 +138,16 @@ <th>Extended</th> </tr> - <?lsmb foreach number ?> + <?lsmb FOREACH number ?> + <?lsmb loop_count = loop.count - 1 ?> <tr valign=top> - <td align=right><?lsmb runningnumber ?>.</td> - <td><?lsmb number ?></td> - <td><?lsmb description ?></td> - <td align=right><?lsmb qty ?></td> - <td><?lsmb unit ?></td> + <td align=right><?lsmb runningnumber.${loop_count} ?>.</td> + <td><?lsmb number.${loop_count} ?></td> + <td><?lsmb description.${loop_count} ?></td> + <td align=right><?lsmb qty.${loop_count} ?></td> + <td><?lsmb unit.${loop_count} ?></td> </tr> - <?lsmb end number ?> + <?lsmb END ?> <tr> <td colspan=8><hr noshade></td> @@ -156,7 +157,7 @@ </td> </tr> - <?lsmb if notes ?> + <?lsmb IF notes ?> <tr> <td> </td> @@ -170,7 +171,7 @@ </table> </td> </tr> - <?lsmb end notes ?> + <?lsmb END ?> </table> |