Revision 94f65264
Von Sven Schöling vor mehr als 10 Jahren hinzugefügt
templates/webpages/project/_basic_data.html | ||
---|---|---|
6 | 6 |
<table> |
7 | 7 |
<tr> |
8 | 8 |
<th align="right">[% 'Number' | $T8 %]</th> |
9 |
<td>[% L.input_tag("project.projectnumber", SELF.project.projectnumber, size=60, class="initial_focus") %]</td> |
|
9 |
<td>[% L.input_tag("project.projectnumber", SELF.project.projectnumber, size=60, style='width: 300px', class="initial_focus") %]</td>
|
|
10 | 10 |
</tr> |
11 | 11 |
|
12 | 12 |
<tr> |
13 | 13 |
<th align="right">[% 'Description' | $T8 %]</th> |
14 | 14 |
<td> |
15 |
[%- SET rows = LxERP.numtextrows(SELF.project.description, 60) %] |
|
16 |
[%- IF rows > 1 %] |
|
17 |
[%- L.textarea_tag("project.description", SELF.project.description, rows=row, size=60, style="width: 100%", wrap="soft") %] |
|
18 |
[%- ELSE %] |
|
19 |
[%- L.input_tag("project.description", SELF.project.description, size=60) %] |
|
20 |
[%- END %] |
|
15 |
[%- L.areainput_tag("project.description", SELF.project.description, size=60, style="width: 300px", wrap="soft") %] |
|
21 | 16 |
</td> |
22 | 17 |
</tr> |
23 | 18 |
|
Auch abrufbar als: Unified diff
Projekt: Beschreibung in areainput geändert und Länge der Felder angepasst