X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/1600ef672b02029ef3bb2ab940c0954820ef47b3..2c92b5acfbbc7486730ec7feec509abbdcbc7ebc:/templates/webpages/project/_basic_data.html diff --git a/templates/webpages/project/_basic_data.html b/templates/webpages/project/_basic_data.html index a278356a7..c9dcd1d76 100644 --- a/templates/webpages/project/_basic_data.html +++ b/templates/webpages/project/_basic_data.html @@ -6,24 +6,24 @@
| [% '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.ALL_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.ALL_PROJECT_STATUS, default=SELF.project.project_status_id, title_key='description', style='width: 300px') %] | |