Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision bcb41cda

Von Sven Schöling vor fast 18 Jahren hinzugefügt

  • ID bcb41cda2a33c1b7e8cd3386ae53b04ac7198f15
  • Vorgänger 9d10f90a
  • Nachfolger 394f0f6e

Bug 608.
(Feldergroessen im Ansprechpartner Dialog)
Datenbank und Bildschirm haben ja Platz, also passen auch groessere Felder hin.

Unterschiede anzeigen:

bin/mozilla/ct.pl
1027 1027
                $ansprechpartner
1028 1028
                <tr>
1029 1029
	          <th align=left nowrap>| . $locale->text('Greeting') . qq|</th>
1030
                  <td><input id=cp_greeting name=cp_greeting size=30 maxlength=30 value="$form->{cp_greeting}">&nbsp;
1030
                  <td><input id=cp_greeting name=cp_greeting size=40 maxlength=40 value="$form->{cp_greeting}">&nbsp;
1031 1031
                  $select_greeting</td>
1032 1032
                </tr>
1033 1033
                <tr>
1034 1034
                  <th align=left nowrap>| . $locale->text('Title') . qq|</th>
1035
                  <td><input id=cp_title name=cp_title size=30 maxlength=30 value="$form->{cp_title}">&nbsp;
1035
                  <td><input id=cp_title name=cp_title size=40 maxlength=40 value="$form->{cp_title}">&nbsp;
1036 1036
                  $select_title</td>
1037 1037
                </tr>
1038 1038
                <tr>
1039 1039
                  <th align=left nowrap>| . $locale->text('Department') . qq|</th>
1040
                  <td><input id=cp_abteilung name=cp_abteilung size=30 maxlength=40 value="$form->{cp_abteilung}">&nbsp;
1040
                  <td><input id=cp_abteilung name=cp_abteilung size=40 maxlength=40 value="$form->{cp_abteilung}">&nbsp;
1041 1041
                  $select_department</td>
1042 1042
                </tr>
1043 1043
                <tr>
1044 1044
                  <th align=left nowrap>|
1045 1045
    . $locale->text('Given Name') . qq|</th>
1046
                  <td><input id=cp_givenname name=cp_givenname size=30 maxlength=40 value="$form->{cp_givenname}"></td>
1046
                  <td><input id=cp_givenname name=cp_givenname size=40 maxlength=40 value="$form->{cp_givenname}"></td>
1047 1047
                </tr>
1048 1048
                <tr>
1049 1049
	          <th align=left nowrap>| . $locale->text('Name') . qq|</th>
1050
                  <td><input id=cp_name name=cp_name size=30 maxlength=40 value="$form->{cp_name}"></td>
1050
                  <td><input id=cp_name name=cp_name size=40 maxlength=40 value="$form->{cp_name}"></td>
1051 1051
                </tr>
1052 1052
                <tr>
1053 1053
	          <th align=left nowrap>| . $locale->text('Phone1') . qq|</th>
1054
                  <td><input id=cp_phone1 name=cp_phone1 size=30 maxlength=30 value="$form->{cp_phone1}"></td>
1054
                  <td><input id=cp_phone1 name=cp_phone1 size=40 maxlength=40 value="$form->{cp_phone1}"></td>
1055 1055
                </tr>
1056 1056
                <tr>
1057 1057
                  <th align=left nowrap>| . $locale->text('Phone2') . qq|</th>
1058
                  <td><input id=cp_phone2 name=cp_phone2 size=30 maxlength=30 value="$form->{cp_phone2}"></td>
1058
                  <td><input id=cp_phone2 name=cp_phone2 size=40 maxlength=40 value="$form->{cp_phone2}"></td>
1059 1059
                </tr>
1060 1060
                <tr>
1061 1061
                  <th align=left nowrap>| . $locale->text('Fax') . qq|</th>
1062
                  <td><input id=cp_fax name=cp_fax size=30 maxlength=30 value="$form->{cp_fax}"></td>
1062
                  <td><input id=cp_fax name=cp_fax size=40 maxlength=40 value="$form->{cp_fax}"></td>
1063 1063
                </tr>
1064 1064
                <tr>
1065 1065
                  <th align=left nowrap>| . $locale->text('Mobile1') . qq|</th>
1066
                  <td><input id=cp_mobile1 name=cp_mobile1 size=30 maxlength=30 value="$form->{cp_mobile1}"></td>
1066
                  <td><input id=cp_mobile1 name=cp_mobile1 size=40 maxlength=40 value="$form->{cp_mobile1}"></td>
1067 1067
                </tr>
1068 1068
                <tr>
1069 1069
                  <th align=left nowrap>| . $locale->text('Mobile2') . qq|</th>
1070
                  <td><input id=cp_mobile2 name=cp_mobile2 size=30 maxlength=30 value="$form->{cp_mobile2}"></td>
1070
                  <td><input id=cp_mobile2 name=cp_mobile2 size=40 maxlength=40 value="$form->{cp_mobile2}"></td>
1071 1071
                </tr>
1072 1072
                <tr>
1073 1073
                  <th align=left nowrap>| . $locale->text('Sat. Phone') . qq|</th>
1074
                  <td><input id=cp_satphone name=cp_satphone size=30 maxlength=30 value="$form->{cp_satphone}"></td>
1074
                  <td><input id=cp_satphone name=cp_satphone size=40 maxlength=40 value="$form->{cp_satphone}"></td>
1075 1075
                </tr>
1076 1076
                <tr>
1077 1077
                  <th align=left nowrap>| . $locale->text('Sat. Fax') . qq|</th>
1078
                  <td><input id=cp_satfax name=cp_satfax size=30 maxlength=30 value="$form->{cp_satfax}"></td>
1078
                  <td><input id=cp_satfax name=cp_satfax size=40 maxlength=40 value="$form->{cp_satfax}"></td>
1079 1079
                </tr>
1080 1080
                <tr>
1081 1081
	          <th align=left nowrap>| . $locale->text('Project') . qq|</th>
1082
                  <td><input id=cp_project name=cp_project size=30 maxlength=40 value="$form->{cp_project}"></td>
1082
                  <td><input id=cp_project name=cp_project size=40 maxlength=40 value="$form->{cp_project}"></td>
1083 1083
                </tr>
1084 1084
                <tr>
1085 1085
	          <th align=left nowrap>| . $locale->text('E-mail') . qq|</th>
1086
                  <td><input id=cp_email name=cp_email size=30 maxlength=40 value="$form->{cp_email}"></td>
1086
                  <td><input id=cp_email name=cp_email size=40 maxlength=40 value="$form->{cp_email}"></td>
1087 1087
                </tr>
1088 1088
                <tr>
1089 1089
	          <th align=left nowrap>| . $locale->text('Private Phone') . qq|</th>
1090
                  <td><input id=cp_privatphone name=cp_privatphone size=30 maxlength=40 value="$form->{cp_privatphone}"></td>
1090
                  <td><input id=cp_privatphone name=cp_privatphone size=40 maxlength=40 value="$form->{cp_privatphone}"></td>
1091 1091
                </tr>
1092 1092
                <tr>
1093 1093
	          <th align=left nowrap>| . $locale->text('Private E-mail') . qq|</th>
1094
                  <td><input id=cp_privatemail name=cp_privatemail size=30 maxlength=40 value="$form->{cp_privatemail}"></td>
1094
                  <td><input id=cp_privatemail name=cp_privatemail size=40 maxlength=40 value="$form->{cp_privatemail}"></td>
1095 1095
                </tr>
1096 1096
                <tr>
1097 1097
	          <th align=left nowrap>| . $locale->text('Birthday') . qq|</th>
1098
                  <td><input id=cp_birthday name=cp_birthday size=30 maxlength=40 value="$form->{cp_birthday}"></td>
1098
                  <td><input id=cp_birthday name=cp_birthday size=40 maxlength=40 value="$form->{cp_birthday}"></td>
1099 1099
                </tr>
1100 1100
                
1101 1101
          </table>

Auch abrufbar als: Unified diff