Bug 42133 - Display information about mapped column

git-svn-id: svn://svn.office.custis.ru/3rdparty/bugzilla.org/trunk@1561 6955db30-a419-402b-8a0d-67ecbb4d7f56
master
vfilippov 2012-05-25 11:56:36 +00:00
parent 8272a23a58
commit c3304e1e19
1 changed files with 2 additions and 1 deletions

View File

@ -148,6 +148,7 @@ function checkColumns()
[% import_field_descs.${field} | html %]
[% ELSE %]
<span style="color: red">[% field | html %]</span>
[% IF name_tr.$field %] (mapped to [% import_field_descs.${name_tr.$field} %])[% END %]
[% END %]
</a>
</p>
@ -155,7 +156,7 @@ function checkColumns()
<select id="t_[% field | html %]" name="t_[% field | html %]" style="[% IF name_tr.${field} %]display: none; width: 90px[% ELSE %]width: 150px[% END %]">
<option value="">Don&apos;t map: [% field | html %]</option>
[% FOR f = import_fields %]
<option value="[% f | html %]" [% IF name_tr.${field} == f %] selected[% SET found = 1 %][% END %]>[% import_field_descs.${f} | html %]</option>
<option value="[% f | html %]" [% IF name_tr.$field == f %] selected[% SET found = 1 %][% END %]>[% import_field_descs.$f | html %]</option>
[% END %]
</select>
</td>