]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/ca/list.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / ca / list.html
1 [% USE L %]
2 [% USE T8 %]
3 [% USE HTML %]
4 [% USE LxERP %]
5 <h1>[% title | html %]</h1>
6
7 <form method=post action="[% script | html %]">
8
9
10 <div class="wrapper">
11 [% L.hidden_tag('accno', accno) %]
12 [% L.hidden_tag('description', description) %]
13 [% L.hidden_tag('sort', 'transdate') %]
14 [% L.hidden_tag('accounttype', accounttype) %]
15
16 <table class="tbl-horizontal">
17   <colgroup> <col style="width:1.4em;"><col class="wi-small"><col class="wi-lightwide"> </colgroup>
18   <caption>[% 'Periods' | $T8 %]</caption>
19   <tbody>
20     <tr>
21       <th colspan="3">
22         <h4>
23           [% L.radio_button_tag('reporttype', value='custom', id='reporttype_custom') %]
24           <label for="reporttype_custom">[% LxERP.t8('Customized Report') %]</label>
25         </h4>
26       </th>
27     </tr>
28     <tr>
29       <th></th>
30       <th>[% 'Year' | $T8 %]</th>
31       <td><input type="text" name=year class="wi-smallest" title="[% 'YYYY' | $T8 %]" value="[% year %]"></td>
32     </tr>
33      <tr>
34       <th></th>
35       <th colspan="2"><h4>[% 'Periods' | $T8 %]</h4></th>
36     </tr>
37     <tr>
38       <th></th>
39       <th>[% 'Yearly' | $T8 %]</th>
40       <td>[% L.radio_button_tag('duetyp', value=13, label=LxERP.t8('Yearly')) %]</td>
41     </tr>
42     <tr>
43       <th></th>
44       <th>[% 'Quarterly' | $T8 %]</th>
45      <td>
46         [% L.radio_button_tag('duetyp', value='A', label='1. ' _ LxERP.t8('Quarter')) %]<br>
47         [% L.radio_button_tag('duetyp', value='B', label='2. ' _ LxERP.t8('Quarter')) %]<br>
48         [% L.radio_button_tag('duetyp', value='C', label='3. ' _ LxERP.t8('Quarter')) %]<br>
49         [% L.radio_button_tag('duetyp', value='D', label='4. ' _ LxERP.t8('Quarter')) %]
50       </td>
51     </tr>
52     <tr>
53       <th></th>
54       <th>[% 'Monthly' | $T8 %]</th>
55       <td>
56         [% L.radio_button_tag('duetyp', value='1', label=LxERP.t8('January')) %]<br>
57         [% L.radio_button_tag('duetyp', value='5', label=LxERP.t8('May')) %]<br>
58         [% L.radio_button_tag('duetyp', value='9', label=LxERP.t8('September')) %]<br>
59         [% L.radio_button_tag('duetyp', value='2', label=LxERP.t8('February')) %]<br>
60         [% L.radio_button_tag('duetyp', value='6', label=LxERP.t8('June')) %]<br>
61         [% L.radio_button_tag('duetyp', value='10', label=LxERP.t8('October')) %]<br>
62         [% L.radio_button_tag('duetyp', value='3', label=LxERP.t8('March')) %]<br>
63         [% L.radio_button_tag('duetyp', value='7', label=LxERP.t8('July')) %]<br>
64         [% L.radio_button_tag('duetyp', value='11', label=LxERP.t8('November')) %]<br>
65         [% L.radio_button_tag('duetyp', value='4', label=LxERP.t8('April')) %]<br>
66         [% L.radio_button_tag('duetyp', value='8', label=LxERP.t8('August')) %]<br>
67         [% L.radio_button_tag('duetyp', value='12', label=LxERP.t8('December')) %]
68       </td>
69     </tr>
70     <tr>
71       <th colspan="3">
72         <h4>[% L.radio_button_tag('reporttype', value='free',id='reporttype_free') %]
73         <label for="reporttype_free">[% LxERP.t8('Free report period') %]</label></h4>
74       </th>
75     </tr>
76     <tr>
77       <th></th>
78       <td colspan="2">
79         [% 'From' | $T8 %] [% L.date_tag('fromdate') %]
80         [% 'Bis' | $T8  %] [% L.date_tag('todate')   %]
81       </td>
82     </tr>
83     <tr>
84       <th colspan="3" class="caption">[% 'Miscellaneous' | $T8 %]</th>
85     </tr>
86     <tr>
87       <th colspan="2">[% 'Decimalplaces' | $T8 %]</th>
88       <td><input type="text" name=decimalplaces size=3 value="2"></td>
89     </tr>
90     <tr>
91       <th colspan="2">[% LxERP.t8('Subtotal') %] </th>
92       <td>[% L.checkbox_tag('subtotal', label=LxERP.t8('Yes')) %]</td>
93     </tr>
94
95 </tbody>
96 </table>
97
98 </div><!-- /.wrapper -->
99
100 <div class="buttons">[% L.submit_tag('action', LxERP.t8('List Transactions')) %]</div>
101
102 </form>