template: Verwendung von MYCONFIG.jsc_dateformat entfernt
[kivitendo-erp.git] / templates / webpages / letter / search.html
1 [% USE HTML %]
2 [% USE T8 %]
3 [% USE L %]
4 <body>
5
6  <div class="listtop">[% title %]</div>
7
8  <form action="letter.pl" method="post" name="Form">
9   <input type="hidden" name="nextsub" value="report">
10
11   <p>
12    <table>
13     <tr>
14      <th align='right'>[% 'Letternumber' | $T8 %]</th>
15      <td><input name='letternumber' style='width:250px' value='[% letternumber %]'></th>
16     </tr>
17     <tr>
18      <td align="right">[% 'Customer' | $T8 %]</td>
19      <td>
20         [%- INCLUDE 'generic/multibox.html'
21              name          = 'customer',
22              style         = 'width:250px',
23              DATA          = ALL_CUSTOMERS,
24              id_key        = 'id',
25              label_key     = 'name',
26              select        = vc_select,
27              limit         = MYCONFIG.vclimit,
28              allow_textbox = 1,
29              show_empty    = 1,
30              force_textbox = limit_exceeded_all_customer
31              onChange      = "document.getElementById('update_button').click();" -%]
32 [%- IF MYCONFIG.vclimit > ALL_CUSTOMERS.size %]
33        <input type="hidden" name='selectcustomer' value="1">
34 [%- END %]
35      </td>
36     </tr>
37
38     <tr>
39      <td align="right">[% 'Contact' | $T8 %]</td>
40      <td><input name="contact" style='width:250px'></td>
41     </tr>
42
43     <tr>
44      <td align="right">[% 'Subject' | $T8 %]</td>
45      <td><input name="subject" style='width:250px'></td>
46     </tr>
47
48     <tr>
49      <td align="right">[% 'Body' | $T8 %]</td>
50      <td><input name="body" style='width:250px'></td>
51     </tr>
52
53     <tr>
54      <td align='right'>[% 'From' | $T8 %]</td>
55      <td>
56       [% L.date_tag('date_from') %]
57       [% 'To (time)' | $T8 %]
58       [% L.date_tag('date_to') %]
59      </td>
60     </tr>
61 <!--
62     <tr>
63      <td align="right">[% 'Include in Report' | $T8 %]</td>
64      <td>
65
66       <table>
67       </table>
68
69      </td>
70     </tr>
71 -->
72    </table>
73   </p>
74
75   <p>
76    <input type="submit" name="action" value="[% 'Continue' | $T8 %]">
77   </p>
78  </form>
79
80 </body>
81 </html>