X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/1600ef672b02029ef3bb2ab940c0954820ef47b3..53593baa211863fbf66540cf1bcc36c8fb37257f:/templates/webpages/project/_basic_data.html diff --git a/templates/webpages/project/_basic_data.html b/templates/webpages/project/_basic_data.html index a278356a7..b2f2528f5 100644 --- a/templates/webpages/project/_basic_data.html +++ b/templates/webpages/project/_basic_data.html @@ -6,29 +6,29 @@
| [% 'Number' | $T8 %] | -[% L.input_tag("project.projectnumber", SELF.project.projectnumber, size=60, class="initial_focus") %] | +[% L.input_tag("project.projectnumber", SELF.project.projectnumber, size=60, style='width: 300px', class="initial_focus") %] |
|---|---|---|
| [% 'Description' | $T8 %] | - [%- SET rows = LxERP.numtextrows(SELF.project.description, 60) %] - [%- IF rows > 1 %] - [%- L.textarea_tag("project.description", SELF.project.description, rows=row, size=60, style="width: 100%", wrap="soft") %] - [%- ELSE %] - [%- L.input_tag("project.description", SELF.project.description, size=60) %] - [%- END %] + [%- L.areainput_tag("project.description", SELF.project.description, size=60, style="width: 300px", wrap="soft") %] | |
| [% 'Project Type' | $T8 %] | -[% L.select_tag('project.project_type_id', ALL_PROJECT_TYPES, default=SELF.project.project_type_id, title_key='description', style='width: 300px') %] | +[% L.select_tag('project.project_type_id', SELF.project_types, default=SELF.project.project_type_id, title_key='description', style='width: 300px') %] | +
| [% 'Project Status' | $T8 %] | +[% L.select_tag('project.project_status_id', SELF.project_statuses, default=SELF.project.project_status_id, title_key='description', style='width: 300px') %] | |
| [% 'Customer' | $T8 %] | -[% L.select_tag('project.customer_id', ALL_CUSTOMERS, default=SELF.project.customer_id, title_key='name', with_empty=1, style='width: 300px') %] | +[% P.customer_vendor.picker('project.customer_id', SELF.project.customer_id, type='customer', fat_set_item=1, style='width: 300px', default=SELF.project.customer_id)%] |