Templates werden nicht mehr explizit übersetzt: *_master in * umbenannt
[kivitendo-erp.git] / templates / webpages / oe / check_for_direct_delivery.html
1 [%- USE T8 %]
2 [% USE HTML %]<body>
3
4  <div class="listtop" width="100%">[% 'Carry over shipping address' | $T8 %]</div>
5
6  <p>[% 'You have entered or selected the following shipping address for this customer:' | $T8 %]</p>
7
8  <p>
9   <table>
10    <tr>
11     <th align="right" valign="top">[% 'Name' | $T8 %]:</th>
12     <td valign="top">[% HTML.escape(CFDD_shiptoname) %]</td>
13    </tr>
14
15    <tr>
16     <th align="right" valign="top">[% 'Department' | $T8 %]:</th>
17     <td valign="top">[% HTML.escape(CFDD_shiptodepartment_1) %]</td>
18    </tr>
19
20    <tr>
21     <th align="right" valign="top">&nbsp;</th>
22     <td valign="top">[% HTML.escape(CFDD_shiptodepartment_2) %]</td>
23    </tr>
24
25    <tr>
26     <th align="right" valign="top">[% 'Street' | $T8 %]:</th>
27     <td valign="top">[% HTML.escape(CFDD_shiptostreet) %]</td>
28    </tr>
29
30    <tr>
31     <th align="right" valign="top">[% 'Zipcode' | $T8 %]:</th>
32     <td valign="top">[% HTML.escape(CFDD_shiptozipcode) %]</td>
33    </tr>
34
35    <tr>
36     <th align="right" valign="top">[% 'City' | $T8 %]:</th>
37     <td valign="top">[% HTML.escape(CFDD_shiptocity) %]</td>
38    </tr>
39
40    <tr>
41     <th align="right" valign="top">[% 'Country' | $T8 %]:</th>
42     <td valign="top">[% HTML.escape(CFDD_shiptocountry) %]</td>
43    </tr>
44
45    <tr>
46     <th align="right" valign="top">[% 'Contact' | $T8 %]:</th>
47     <td valign="top">[% HTML.escape(CFDD_shiptocontact) %]</td>
48    </tr>
49
50    <tr>
51     <th align="right" valign="top">[% 'Phone' | $T8 %]:</th>
52     <td valign="top">[% HTML.escape(CFDD_shiptophone) %]</td>
53    </tr>
54
55    <tr>
56     <th align="right" valign="top">[% 'Fax' | $T8 %]:</th>
57     <td valign="top">[% HTML.escape(CFDD_shiptofax) %]</td>
58    </tr>
59
60    <tr>
61     <th align="right" valign="top">[% 'E-mail' | $T8 %]:</th>
62     <td valign="top">[% HTML.escape(CFDD_shiptoemail) %]</td>
63    </tr>
64   </table>
65  </p>
66
67   [% 'Do you want to carry this shipping address over to the new purchase order so that the vendor can deliver the goods directly to your customer?' | $T8 %]
68  </p>
69
70  <form method="post" action="oe.pl">
71
72   <p>
73    <input type="submit" name="action" value="[% 'Yes' | $T8 %]">&nbsp;
74    <input type="submit" name="action" value="[% 'No' | $T8 %]">
75   </p>
76
77   <input type="hidden" name="yes_nextsub" value="check_for_direct_delivery_yes">
78   <input type="hidden" name="no_nextsub" value="check_for_direct_delivery_no">
79
80   [%- FOREACH row = VARIABLES %]
81   <input type="hidden" name="[% HTML.escape(row.key) %]" value="[% HTML.escape(row.value) %]">
82   [%- END %]
83
84  </form>
85
86 </body>
87 </html>