View | Details | Raw Unified | Return to bug 28839
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt (-8 / +8 lines)
Lines 97-107 Link Here
97
</ul>
97
</ul>
98
<form method="post" action="[% SCRIPT_NAME | html %]" id="uploadfile" enctype="multipart/form-data">
98
<form method="post" action="[% SCRIPT_NAME | html %]" id="uploadfile" enctype="multipart/form-data">
99
<fieldset class="rows" id="uploadform">
99
<fieldset class="rows" id="uploadform">
100
<legend>Stage records into the reservoir</legend>
100
<legend>Upload a file to stage</legend>
101
<ol>
101
<ol>
102
	<li>
102
	<li>
103
        <div id="fileuploadform">
103
        <div id="fileuploadform">
104
		<label for="fileToUpload">Select the file to stage: </label>
104
		<label for="fileToUpload">File: </label>
105
		<input type="file" id="fileToUpload" name="fileToUpload" />
105
		<input type="file" id="fileToUpload" name="fileToUpload" />
106
        </div>	</li>
106
        </div>	</li>
107
</ol>
107
</ol>
Lines 122-131 Link Here
122
</form>
122
</form>
123
123
124
<fieldset class="rows" id="profile_fieldset">
124
<fieldset class="rows" id="profile_fieldset">
125
    <legend>Profile settings</legend>
125
    <legend>Pre-fill values with profile?</legend>
126
    <ol>
126
    <ol>
127
        <li>
127
        <li>
128
            <label for="profile">Pre-fill values with profile</label>
128
            <label for="profile">Profile: </label>
129
            <select name="profile" id="profile">
129
            <select name="profile" id="profile">
130
                <option value="">Do not use profile</option>
130
                <option value="">Do not use profile</option>
131
            </select>
131
            </select>
Lines 145-150 Link Here
145
        <input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" />
145
        <input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" />
146
        <input type="hidden" name="runinbackground" id="runinbackground" value="" />
146
        <input type="hidden" name="runinbackground" id="runinbackground" value="" />
147
        <input type="hidden" name="completedJobID" id="completedJobID" value="" />
147
        <input type="hidden" name="completedJobID" id="completedJobID" value="" />
148
    <legend>Settings</legend>
148
	<ol><li>
149
	<ol><li>
149
		<label for="comments">Comments about this file: </label>
150
		<label for="comments">Comments about this file: </label>
150
		<input type="text" id="comments" name="comments" />
151
		<input type="text" id="comments" name="comments" />
Lines 182-193 Link Here
182
183
183
  [% IF MarcModificationTemplatesLoop %]
184
  [% IF MarcModificationTemplatesLoop %]
184
    <fieldset class="rows">
185
    <fieldset class="rows">
185
      <legend>Use MARC Modification Template:</legend>
186
      <legend>Modify records using a MARC modification template?</legend>
186
      <ol>
187
      <ol>
187
        <li>
188
        <li>
188
          <label for="comments">Modify record using the following template: </label>
189
          <label for="comments">Template: </label>
189
          <select name="marc_modification_template_id" id="marc_modification_template_id">
190
          <select name="marc_modification_template_id" id="marc_modification_template_id">
190
            <option value="">Do not use.</option>
191
            <option value="">Do not use template</option>
191
              [% FOREACH mmt IN MarcModificationTemplatesLoop %]
192
              [% FOREACH mmt IN MarcModificationTemplatesLoop %]
192
                <option value="[% mmt.template_id | html %]">[% mmt.name | html %]</option>
193
                <option value="[% mmt.template_id | html %]">[% mmt.name | html %]</option>
193
              [% END %]
194
              [% END %]
194
- 

Return to bug 28839