Lines 129-136
$(document).ready(function(){
Link Here
|
129 |
<li><span class="label">Comments:</span> [% IF ( comments ) %][% comments %][% ELSE %](none)[% END %]</li> |
129 |
<li><span class="label">Comments:</span> [% IF ( comments ) %][% comments %][% ELSE %](none)[% END %]</li> |
130 |
<li><span class="label">Type:</span> [% IF ( record_type == 'auth' ) %]Authority records[% ELSE %]Bibliographic records[% END %]</li> |
130 |
<li><span class="label">Type:</span> [% IF ( record_type == 'auth' ) %]Authority records[% ELSE %]Bibliographic records[% END %]</li> |
131 |
<li><span class="label">Staged:</span> [% upload_timestamp %]</li> |
131 |
<li><span class="label">Staged:</span> [% upload_timestamp %]</li> |
132 |
<li><span class="label">Status:</span> [% import_status %]</li> |
132 |
<li><span class="label">Status:</span> |
133 |
<li> |
133 |
[% IF ( import_status == 'cleaned' ) %] |
|
|
134 |
Cleaned |
135 |
[% ELSIF ( import_status == 'imported' ) %] |
136 |
Imported |
137 |
[% ELSIF ( import_status == 'importing' ) %] |
138 |
Importing |
139 |
[% ELSIF ( import_status == 'reverted' ) %] |
140 |
Reverted |
141 |
[% ELSIF ( import_status == 'reverting' ) %] |
142 |
Reverting |
143 |
[% ELSIF ( import_status == 'staged' ) %] |
144 |
Staged |
145 |
[% ELSE %] |
146 |
[% import_status %] |
147 |
[% END %] |
148 |
</li> |
149 |
<li> |
134 |
[% IF ( can_commit ) %]<label for="new_matcher_id">Matching rule applied:</label><select name="new_matcher_id" id="new_matcher_id"> |
150 |
[% IF ( can_commit ) %]<label for="new_matcher_id">Matching rule applied:</label><select name="new_matcher_id" id="new_matcher_id"> |
135 |
<option value="">Do not look for matching records</option> |
151 |
<option value="">Do not look for matching records</option> |
136 |
[% FOREACH available_matcher IN available_matchers %] |
152 |
[% FOREACH available_matcher IN available_matchers %] |
Lines 251-257
Page
Link Here
|
251 |
<td><a href="[% batch_lis.script_name %]?import_batch_id=[% batch_lis.import_batch_id %]">[% batch_lis.file_name %]</a></td> |
267 |
<td><a href="[% batch_lis.script_name %]?import_batch_id=[% batch_lis.import_batch_id %]">[% batch_lis.file_name %]</a></td> |
252 |
<td>[% batch_lis.comments %]</td> |
268 |
<td>[% batch_lis.comments %]</td> |
253 |
<td>[% IF ( batch_lis.record_type == 'auth' ) %]Authority[% ELSE %]Bibliographic[% END %]</td> |
269 |
<td>[% IF ( batch_lis.record_type == 'auth' ) %]Authority[% ELSE %]Bibliographic[% END %]</td> |
254 |
<td>[% batch_lis.import_status %]</td> |
270 |
<td> |
|
|
271 |
[% IF ( batch_lis.import_status == 'cleaned' ) %] |
272 |
Cleaned |
273 |
[% ELSIF ( batch_lis.import_status == 'imported' ) %] |
274 |
Imported |
275 |
[% ELSIF ( batch_lis.import_status == 'importing' ) %] |
276 |
Importing |
277 |
[% ELSIF ( batch_lis.import_status == 'reverted' ) %] |
278 |
Reverted |
279 |
[% ELSIF ( batch_lis.import_status == 'reverting' ) %] |
280 |
Reverting |
281 |
[% ELSIF ( batch_lis.import_status == 'staged' ) %] |
282 |
Staged |
283 |
[% ELSE %] |
284 |
[% batch_lis.import_status %] |
285 |
[% END %] |
286 |
</td> |
255 |
<td>[% batch_lis.upload_timestamp %]</td> |
287 |
<td>[% batch_lis.upload_timestamp %]</td> |
256 |
<td>[% batch_lis.num_records %]</td> |
288 |
<td>[% batch_lis.num_records %]</td> |
257 |
<td>[% batch_lis.num_items %][% IF ( batch_lis.num_items ) %] <a href="[% batch_lis.script_name %]?import_batch_id=[% batch_lis.import_batch_id %]&op=create_labels">(Create label batch)</a>[% END %]</td> |
289 |
<td>[% batch_lis.num_items %][% IF ( batch_lis.num_items ) %] <a href="[% batch_lis.script_name %]?import_batch_id=[% batch_lis.import_batch_id %]&op=create_labels">(Create label batch)</a>[% END %]</td> |
258 |
- |
|
|