]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/project/_basic_data.html
kivitendo 3.9.2-0.2
[mfinanz.git] / templates / design40_webpages / project / _basic_data.html
1 [% USE T8 %]
2 [% USE L %]
3 [% USE P %]
4 [% USE HTML %]
5 [% USE LxERP %]
6
7 <div class="wrapper">
8
9 <table class="tbl-horizontal">
10   <caption>[% 'Project' | $T8 %][% IF SELF.project.description %] <i>[% SELF.project.description %]</i>[% END %] </caption>
11   <colgroup> <col class="wi-small"><col class="wi-wide"> </colgroup>
12   <tbody>
13     <tr>
14       <th>[% 'Number' | $T8 %]</th>
15       <td>[% L.input_tag("project.projectnumber", SELF.project.projectnumber, class="wi-wide initial_focus") %]</td>
16     </tr>
17     <tr>
18       <th>[% 'Description' | $T8 %]</th>
19       <td>[% L.areainput_tag("project.description", SELF.project.description, size=37, class='wi-wide', wrap="soft") %] </td>
20     </tr>
21     <tr>
22       <th>[% 'Project Type' | $T8 %]</th>
23       <td>[% L.select_tag('project.project_type_id', SELF.project_types, default=SELF.project.project_type_id, title_key='description', class='wi-wide') %]</td>
24     </tr>
25     <tr>
26       <th>[% 'Project Status' | $T8 %]</th>
27       <td>[% L.select_tag('project.project_status_id', SELF.project_statuses, default=SELF.project.project_status_id, title_key='description', class='wi-wide') %]</td>
28     </tr>
29     <tr>
30       <th>[% 'Customer' | $T8 %]</th>
31       <td>[% P.customer_vendor.picker('project.customer_id', SELF.project.customer_id, type='customer', fat_set_item=1, class='wi-wide', default=SELF.project.customer_id) %]</td>
32     </tr>
33     <tr>
34       <th>[% 'Valid' | $T8 %]</th>
35       <td>[% L.select_tag('project.valid', [ [ 1, LxERP.t8('Valid') ], [ 0, LxERP.t8('Invalid') ] ], default=SELF.project.valid, class='wi-wide') %]</td>
36     </tr>
37     [% IF SELF.project.id %]
38     <tr>
39       <th>[% 'Active' | $T8 %]</th>
40       <td>[% L.select_tag('project.active', [ [ 1, LxERP.t8('Active') ], [ 0, LxERP.t8('Inactive') ] ], default=SELF.project.active, class='wi-wide') %]</td>
41     </tr>
42     [% END %]
43   </tbody>
44 </table>
45
46 </div><!-- /.wrapper -->