|
Lines 81-89
Link Here
|
| 81 |
[% END %] |
81 |
[% END %] |
| 82 |
</select> |
82 |
</select> |
| 83 |
</td> |
83 |
</td> |
| 84 |
<td><input type="text" name="marcfield" size="3" value="[% mapping.marcfield | html %]" /></td> |
84 |
<td><input type="text" name="marcfield" size="3" maxlength="3" value="[% mapping.marcfield | html %]" /></td> |
| 85 |
<td><input type="text" name="marcsubfield" size="1" value="[% mapping.marcsubfield | html %]" /></td> |
85 |
<td><input type="text" name="marcsubfield" size="1" maxlength="1" value="[% mapping.marcsubfield | html %]" /></td> |
| 86 |
<td><select name=operator> |
86 |
<td><select name="operator"> |
| 87 |
[% IF mapping.operator == 'equal' %] |
87 |
[% IF mapping.operator == 'equal' %] |
| 88 |
<option value="equal" selected="selected">is equal to</option> |
88 |
<option value="equal" selected="selected">is equal to</option> |
| 89 |
<option value="notequal">not equal to</option> |
89 |
<option value="notequal">not equal to</option> |
|
Lines 92-98
Link Here
|
| 92 |
<option value="notequal" selected="selected">not equal to</option> |
92 |
<option value="notequal" selected="selected">not equal to</option> |
| 93 |
[% END %] |
93 |
[% END %] |
| 94 |
</select></td> |
94 |
</select></td> |
| 95 |
<td><input type="text" name="marcvalue" value="[% mapping.marcvalue | html %]" /></td> |
95 |
<td><input type="text" name="marcvalue" maxlength="80" value="[% mapping.marcvalue | html %]" /></td> |
| 96 |
<td> |
96 |
<td> |
| 97 |
[% IF ( loop.last ) %] |
97 |
[% IF ( loop.last ) %] |
| 98 |
<button type="button" id="new_rule_button" class="btn btn-default btn-xs" title="Add another condition"><i class="fa fa-plus"></i> Add</button> |
98 |
<button type="button" id="new_rule_button" class="btn btn-default btn-xs" title="Add another condition"><i class="fa fa-plus"></i> Add</button> |
|
Lines 119-125
Link Here
|
| 119 |
</td> |
119 |
</td> |
| 120 |
<td><input type="text" name="marcfield" size="3" /></td> |
120 |
<td><input type="text" name="marcfield" size="3" /></td> |
| 121 |
<td><input type="text" name="marcsubfield" size="1" /></td> |
121 |
<td><input type="text" name="marcsubfield" size="1" /></td> |
| 122 |
<td><select name=operator> |
122 |
<td><select name="operator"> |
| 123 |
<option value="equal">is equal to</option> |
123 |
<option value="equal">is equal to</option> |
| 124 |
<option value="notequal">not equal to</option> |
124 |
<option value="notequal">not equal to</option> |
| 125 |
</select></td> |
125 |
</select></td> |
| 126 |
- |
|
|