Lines 78-89
Link Here
|
78 |
<ul> |
78 |
<ul> |
79 |
<li><a href="#uploadfile_tab">Upload a file</a></li> |
79 |
<li><a href="#uploadfile_tab">Upload a file</a></li> |
80 |
[% IF lists.count %]<li id="show_list_option"><a href="#shelves_tab">Select a list of records</a></li>[% END %] |
80 |
[% IF lists.count %]<li id="show_list_option"><a href="#shelves_tab">Select a list of records</a></li>[% END %] |
81 |
<li><a href="#enterlist_tab">Enter a list of record numbers</a></li> |
81 |
<li><a href="#enterlist_tab">Enter a list of record ids</a></li> |
82 |
</ul> |
82 |
</ul> |
83 |
|
83 |
|
84 |
<div id="uploadfile_tab"> |
84 |
<div id="uploadfile_tab"> |
85 |
<fieldset class="rows"> |
85 |
<fieldset class="rows"> |
86 |
<legend>Use a file</legend> |
|
|
87 |
<ol> |
86 |
<ol> |
88 |
<li><label for="uploadfile">File: </label> <input type="file" id="uploadfile" name="uploadfile" /></li> |
87 |
<li><label for="uploadfile">File: </label> <input type="file" id="uploadfile" name="uploadfile" /></li> |
89 |
</ol> |
88 |
</ol> |
Lines 94-103
Link Here
|
94 |
[% IF lists.count %] |
93 |
[% IF lists.count %] |
95 |
<div id="shelves_tab"> |
94 |
<div id="shelves_tab"> |
96 |
<fieldset class="rows"> |
95 |
<fieldset class="rows"> |
97 |
<legend>Or select a list of records</legend> |
|
|
98 |
<ol> |
96 |
<ol> |
99 |
<li> |
97 |
<li> |
100 |
<label for="shelf_number">Use records from the following list: </label> |
98 |
<label for="shelf_number">List: </label> |
101 |
<select name="shelf_number" id="shelf_number"> |
99 |
<select name="shelf_number" id="shelf_number"> |
102 |
<option value="">Select a list</option> |
100 |
<option value="">Select a list</option> |
103 |
[% FOREACH list IN lists %] |
101 |
[% FOREACH list IN lists %] |
Lines 114-124
Link Here
|
114 |
|
112 |
|
115 |
<div id="enterlist_tab"> |
113 |
<div id="enterlist_tab"> |
116 |
<fieldset class="rows"> |
114 |
<fieldset class="rows"> |
117 |
<legend>Or enter a list of record numbers</legend> |
|
|
118 |
<ol> |
115 |
<ol> |
119 |
<li> |
116 |
<li> |
120 |
<label for="recordnumber_list">List of biblionumbers or authority ids (one per line): </label> |
117 |
<label for="recordnumber_list">Ids: </label> |
121 |
<textarea rows="10" cols="30" id="recordnumber_list" name="recordnumber_list"></textarea> |
118 |
<textarea rows="10" cols="30" id="recordnumber_list" name="recordnumber_list"></textarea> |
|
|
119 |
<div class="hint">Enter a list of biblionumbers or authority ids, one per line.</div> |
122 |
</li> |
120 |
</li> |
123 |
</ol> |
121 |
</ol> |
124 |
</fieldset> |
122 |
</fieldset> |
Lines 128-137
Link Here
|
128 |
</div> <!-- /#batch_mod_form --> |
126 |
</div> <!-- /#batch_mod_form --> |
129 |
|
127 |
|
130 |
<fieldset class="rows"> |
128 |
<fieldset class="rows"> |
131 |
<legend>Use MARC modification template:</legend> |
129 |
<legend>MARC modification template</legend> |
132 |
<ol> |
130 |
<ol> |
133 |
<li> |
131 |
<li> |
134 |
<label for="marc_modification_template_id" class="required">Modify record using the following template: </label> |
132 |
<label for="marc_modification_template_id" class="required">Template: </label> |
135 |
<select name="marc_modification_template_id" id="marc_modification_template_id" required="required"> |
133 |
<select name="marc_modification_template_id" id="marc_modification_template_id" required="required"> |
136 |
<option value="">Select a template</option> |
134 |
<option value="">Select a template</option> |
137 |
[% FOREACH mmt IN MarcModificationTemplatesLoop %] |
135 |
[% FOREACH mmt IN MarcModificationTemplatesLoop %] |
138 |
- |
|
|