Lines 46-53
Link Here
|
46 |
<tr> |
46 |
<tr> |
47 |
<td> |
47 |
<td> |
48 |
<select name="rule_operator"> |
48 |
<select name="rule_operator"> |
49 |
<option value="and" [% IF (mapping.rule_operator == 'and') %] selected="selected" [% END %]>and</option> |
49 |
[% IF (mapping.rule_operator == 'and') %] |
50 |
<option value="or" [% IF (mapping.rule_operator == 'or') %] selected="selected" [% END %]>or</option> |
50 |
<option value="and" selected="selected">and</option> |
|
|
51 |
[% ELSE %] |
52 |
<option value="and">and</option> |
53 |
[% END %] |
54 |
[% IF (mapping.rule_operator == 'or') %] |
55 |
<option value="or" selected="selected">or</option> |
56 |
[% ELSE %] |
57 |
<option value="or">or</option> |
58 |
[% END %] |
51 |
</select> |
59 |
</select> |
52 |
</td> |
60 |
</td> |
53 |
<td><input type="text" name="marcfield" size="3" value="[% mapping.marcfield | html %]" /></td> |
61 |
<td><input type="text" name="marcfield" size="3" value="[% mapping.marcfield | html %]" /></td> |
Lines 74-81
Link Here
|
74 |
<tr> |
82 |
<tr> |
75 |
<td> |
83 |
<td> |
76 |
<select name="rule_operator"> |
84 |
<select name="rule_operator"> |
77 |
<option value="and" [% IF (mapping.rule_operator == 'and') %] selected="selected" [% END %]>and</option> |
85 |
[% IF (mapping.rule_operator == 'and') %] |
78 |
<option value="or" [% IF (mapping.rule_operator == 'or') %] selected="selected" [% END %]>or</option> |
86 |
<option value="and" selected="selected">and</option> |
|
|
87 |
[% ELSE %] |
88 |
<option value="and">and</option> |
89 |
[% END %] |
90 |
[% IF (mapping.rule_operator == 'or') %] |
91 |
<option value="or" selected="selected">or</option> |
92 |
[% ELSE %] |
93 |
<option value="or">or</option> |
94 |
[% END %] |
79 |
</select> |
95 |
</select> |
80 |
</td> |
96 |
</td> |
81 |
<td><input type="text" name="marcfield" size="3" /></td> |
97 |
<td><input type="text" name="marcfield" size="3" /></td> |
82 |
- |
|
|