|
Lines 267-288
Link Here
|
| 267 |
<input type="hidden" name="import_batch_id" value="[% import_batch_id | html %]" /> |
267 |
<input type="hidden" name="import_batch_id" value="[% import_batch_id | html %]" /> |
| 268 |
<fieldset class="action"> |
268 |
<fieldset class="action"> |
| 269 |
[% IF ( record_type != 'auth' ) %] |
269 |
[% IF ( record_type != 'auth' ) %] |
| 270 |
Add new bibliographic records into this framework: |
270 |
<div class="form-group"> |
| 271 |
<select name="framework" id="frameworks"> |
271 |
Add new bibliographic records into this framework: |
| 272 |
<option value="">Default</option> |
272 |
<select name="framework" id="frameworks"> |
| 273 |
[% FOREACH framework IN frameworks %] |
273 |
<option value="">Default</option> |
| 274 |
<option value="[% framework.frameworkcode | html %]">[% framework.frameworktext | html %]</option> |
274 |
[% FOREACH framework IN frameworks %] |
| 275 |
[% END %] |
275 |
<option value="[% framework.frameworkcode | html %]">[% framework.frameworktext | html %]</option> |
| 276 |
</select> |
276 |
[% END %] |
| 277 |
<br/> |
277 |
</select> |
| 278 |
When replacing records use this framework: |
278 |
</div> |
| 279 |
<select name="overlay_framework" id="overlay_frameworks"> |
279 |
<div class="form-group"> |
| 280 |
<option value="_USE_ORIG_">Keep original framework</option> |
280 |
When replacing records use this framework: |
| 281 |
<option value="">Default</option> |
281 |
<select name="overlay_framework" id="overlay_frameworks"> |
| 282 |
[% FOREACH framework IN frameworks %] |
282 |
<option value="_USE_ORIG_">Keep original framework</option> |
| 283 |
<option value="[% framework.frameworkcode | html %]">[% framework.frameworktext | html %]</option> |
283 |
<option value="">Default</option> |
| 284 |
[% END %] |
284 |
[% FOREACH framework IN frameworks %] |
| 285 |
</select> |
285 |
<option value="[% framework.frameworkcode | html %]">[% framework.frameworktext | html %]</option> |
|
|
286 |
[% END %] |
| 287 |
</select> |
| 288 |
</div> |
| 286 |
[% END %] |
289 |
[% END %] |
| 287 |
<br /> |
290 |
<br /> |
| 288 |
<input type="submit" class="button" name="mainformsubmit" value="Import this batch into the catalog" /> |
291 |
<input type="submit" class="button" name="mainformsubmit" value="Import this batch into the catalog" /> |
| 289 |
- |
|
|