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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/addorderiso2709.tt (-3 / +3 lines)
Lines 137-143 Link Here
137
                                    <input type="hidden" size="20" name="budget_id" value="[% budget_id | html %]" />[% Budget_name | html %]
137
                                    <input type="hidden" size="20" name="budget_id" value="[% budget_id | html %]" />[% Budget_name | html %]
138
                                [% ELSE %]
138
                                [% ELSE %]
139
                                    <label for="fund_record_[% biblio.import_record_id | html %]">Fund: </label>
139
                                    <label for="fund_record_[% biblio.import_record_id | html %]">Fund: </label>
140
                                    <select id="fund_record_[% biblio.import_record_id | html %]" size="1" name="budget_id">
140
                                    <select id="fund_record_[% biblio.import_record_id | html %]" name="budget_id">
141
                                    <option value="">Select a fund (will use default if set)</option>
141
                                    <option value="">Select a fund (will use default if set)</option>
142
                                    [% FOREACH budget IN budget_loop %]
142
                                    [% FOREACH budget IN budget_loop %]
143
                                        [% IF ( budget.b_id == biblio.budget_id ) %]
143
                                        [% IF ( budget.b_id == biblio.budget_id ) %]
Lines 295-301 Link Here
295
                                        [% END %]
295
                                        [% END %]
296
296
297
                                        [% IF ( iteminformatio.marc_value.type == 'select' ) %]
297
                                        [% IF ( iteminformatio.marc_value.type == 'select' ) %]
298
                                            <select name="field_value" size="1">
298
                                            <select name="field_value">
299
                                            [% FOREACH value IN iteminformatio.marc_value.values %]
299
                                            [% FOREACH value IN iteminformatio.marc_value.values %]
300
                                                [% IF ( value == iteminformatio.marc_value.default ) %]
300
                                                [% IF ( value == iteminformatio.marc_value.default ) %]
301
                                                    <option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option>
301
                                                    <option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option>
Lines 350-356 Link Here
350
                                        </li>
350
                                        </li>
351
                                        <li>
351
                                        <li>
352
                                            <label for="all_budget_id">Fund: </label>
352
                                            <label for="all_budget_id">Fund: </label>
353
                                            <select id="all_budget_id" size="1" name="all_budget_id">
353
                                            <select id="all_budget_id" name="all_budget_id">
354
                                              <option value="">Select a fund (will populate orders/items if set)</option>
354
                                              <option value="">Select a fund (will populate orders/items if set)</option>
355
                                            [% FOREACH budget_loo IN budget_loop %]
355
                                            [% FOREACH budget_loo IN budget_loop %]
356
                                                [% IF ( budget_loo.b_active ) %]<option value="[% budget_loo.b_id | html %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat | html %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat | html %]">[% budget_loo.b_txt | html %]</option>
356
                                                [% IF ( budget_loo.b_active ) %]<option value="[% budget_loo.b_id | html %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat | html %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat | html %]">[% budget_loo.b_txt | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt (-1 / +1 lines)
Lines 198-204 Basket [% basket.basketno | html %] &rsaquo; Duplicate existing orders Link Here
198
              <li>
198
              <li>
199
                  <label for="all_budget_id">Fund: </label>
199
                  <label for="all_budget_id">Fund: </label>
200
                  <input type="checkbox" name="copy_existing_value" value="budget_id" title="Copy existing value" />
200
                  <input type="checkbox" name="copy_existing_value" value="budget_id" title="Copy existing value" />
201
                  <select id="all_budget_id" size="1" name="all_budget_id">
201
                  <select id="all_budget_id" name="all_budget_id">
202
                    <option value="">Select a fund</option>
202
                    <option value="">Select a fund</option>
203
                  [% FOREACH budget_loo IN budget_loop %]
203
                  [% FOREACH budget_loo IN budget_loop %]
204
                      [% IF ( budget_loo.b_active ) %]<option value="[% budget_loo.b_id | html %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat | html %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat | html %]">[% budget_loo.b_txt | html %]</option>
204
                      [% IF ( budget_loo.b_active ) %]<option value="[% budget_loo.b_id | html %]" data-sort1-authcat="[% budget_loo.b_sort1_authcat | html %]" data-sort2-authcat="[% budget_loo.b_sort2_authcat | html %]">[% budget_loo.b_txt | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-1 / +1 lines)
Lines 337-343 Link Here
337
                        [% active_count= active_count + budget_loo.b_active %]
337
                        [% active_count= active_count + budget_loo.b_active %]
338
                    [% END %]
338
                    [% END %]
339
                [% END %]
339
                [% END %]
340
                <select id="budget_id" size="1" name="budget_id">
340
                <select id="budget_id" name="budget_id">
341
                    <option value="">Select a fund</option>
341
                    <option value="">Select a fund</option>
342
                [% FOREACH budget_loo IN budget_loop %]
342
                [% FOREACH budget_loo IN budget_loop %]
343
                    [% IF ( budget_loo.b_sel ) %]
343
                    [% IF ( budget_loo.b_sel ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqplan.tt (-3 / +3 lines)
Lines 201-207 Link Here
201
<ol>
201
<ol>
202
    <li>
202
    <li>
203
        <label for="authcat"> Select planning type:</label>
203
        <label for="authcat"> Select planning type:</label>
204
        <select name="authcat" id="authcat" size="1">
204
        <select name="authcat" id="authcat">
205
        [% FOREACH value IN authcat_dropbox.values %]
205
        [% FOREACH value IN authcat_dropbox.values %]
206
            [% IF ( value == authcat_dropbox.default ) %]
206
            [% IF ( value == authcat_dropbox.default ) %]
207
            <option value="[% value | html %]" selected="selected">[% PROCESS planning_types type=value %]</option>
207
            <option value="[% value | html %]" selected="selected">[% PROCESS planning_types type=value %]</option>
Lines 252-263 Link Here
252
    <ol>
252
    <ol>
253
        <li><label for="basename">Output to a file named: </label><input type="text" name="basename" id="basename" value="Export" /></li>
253
        <li><label for="basename">Output to a file named: </label><input type="text" name="basename" id="basename" value="Export" /></li>
254
        <li><label class="inline" for="MIME">Into an application</label>
254
        <li><label class="inline" for="MIME">Into an application</label>
255
            <select name="MIME" id="MIME" size="1">
255
            <select name="MIME" id="MIME">
256
            [% FOREACH value IN CGIextChoice %]
256
            [% FOREACH value IN CGIextChoice %]
257
                <option value="[% value | html %]">[% value | html %]</option>
257
                <option value="[% value | html %]">[% value | html %]</option>
258
            [% END %]
258
            [% END %]
259
            </select>
259
            </select>
260
            <select name="sep" id="sep" size="1">
260
            <select name="sep" id="sep">
261
            [% FOREACH value IN CGIsepChoice %]
261
            [% FOREACH value IN CGIsepChoice %]
262
                <option value="[% value | html %]">[% value | html %]</option>
262
                <option value="[% value | html %]">[% value | html %]</option>
263
            [% END %]
263
            [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt (-6 / +6 lines)
Lines 86-92 Link Here
86
                <li><label for="liblibrarian[% loo.row | html %]">Text for librarian: </label><input id="liblibrarian[% loo.row | html %]" type="text" name="liblibrarian" value="[% loo.liblibrarian | html_entity %]" size="40" maxlength="80" /></li>
86
                <li><label for="liblibrarian[% loo.row | html %]">Text for librarian: </label><input id="liblibrarian[% loo.row | html %]" type="text" name="liblibrarian" value="[% loo.liblibrarian | html_entity %]" size="40" maxlength="80" /></li>
87
                <li><label for="libopac[% loo.row | html %]">Text for OPAC: </label><input type="text" id="libopac[% loo.row | html %]" name="libopac" value="[% loo.libopac | html_entity %]" size="40" maxlength="80" /></li>
87
                <li><label for="libopac[% loo.row | html %]">Text for OPAC: </label><input type="text" id="libopac[% loo.row | html %]" name="libopac" value="[% loo.libopac | html_entity %]" size="40" maxlength="80" /></li>
88
                <li><label for="tab[% loo.row | html %]">Managed in tab: </label>
88
                <li><label for="tab[% loo.row | html %]">Managed in tab: </label>
89
                    <select name="tab" size="1" id="tab[% loo.row | html %]">
89
                    <select name="tab" id="tab[% loo.row | html %]">
90
                        [%- IF ( loo.tab ==  -1 ) -%]
90
                        [%- IF ( loo.tab ==  -1 ) -%]
91
                        <option value="-1" selected="selected">ignore</option>
91
                        <option value="-1" selected="selected">ignore</option>
92
                        [%- ELSE -%]
92
                        [%- ELSE -%]
Lines 109-115 Link Here
109
                        <legend>Display</legend>
109
                        <legend>Display</legend>
110
                        <ol>
110
                        <ol>
111
                            <li><label for="ohidden[% loo.row | html %]">Select to display or not:</label>
111
                            <li><label for="ohidden[% loo.row | html %]">Select to display or not:</label>
112
                                <select name="ohidden" size="1" id="ohidden[% loo.row | html %]">
112
                                <select name="ohidden" id="ohidden[% loo.row | html %]">
113
                                    [%- IF ( loo.hidden ==  0 ) -%]
113
                                    [%- IF ( loo.hidden ==  0 ) -%]
114
                                    <option value= "0" selected="selected">Show all</option>
114
                                    <option value= "0" selected="selected">Show all</option>
115
                                    <option value="1">Hide all</option>
115
                                    <option value="1">Hide all</option>
Lines 148-154 Link Here
148
                        <ol>
148
                        <ol>
149
                            <li>
149
                            <li>
150
                                <label for="kohafield[% loo.row | html %]">Koha field:</label>
150
                                <label for="kohafield[% loo.row | html %]">Koha field:</label>
151
                                <select name="kohafield" id="kohafield[% loo.row | html %]" size="1">
151
                                <select name="kohafield" id="kohafield[% loo.row | html %]">
152
                                [%- FOREACH value IN loo.kohafields %]
152
                                [%- FOREACH value IN loo.kohafields %]
153
                                    [% IF ( value == loo.kohafield  && value.length>0 ) -%]
153
                                    [% IF ( value == loo.kohafield  && value.length>0 ) -%]
154
                                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
154
                                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
Lines 164-170 Link Here
164
                            </li>
164
                            </li>
165
                            <li>
165
                            <li>
166
                                <label for="authorised_value[% loo.row | html %]">Authorized value:</label>
166
                                <label for="authorised_value[% loo.row | html %]">Authorized value:</label>
167
                                <select name="authorised_value" id="authorised_value[% loo.row | html %]" size="1">
167
                                <select name="authorised_value" id="authorised_value[% loo.row | html %]">
168
                                [%- FOREACH value IN loo.authorised_values %]
168
                                [%- FOREACH value IN loo.authorised_values %]
169
                                    [% IF ( value == loo.authorised_value && value.length>0 ) -%]
169
                                    [% IF ( value == loo.authorised_value && value.length>0 ) -%]
170
                                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
170
                                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
Lines 180-186 Link Here
180
                            </li>
180
                            </li>
181
                            <li>
181
                            <li>
182
                                <label for="frameworkcode[% loo.row | html %]">Thesaurus:</label>
182
                                <label for="frameworkcode[% loo.row | html %]">Thesaurus:</label>
183
                                <select name="frameworkcode" id="frameworkcode[% loo.row | html %]" size="1">
183
                                <select name="frameworkcode" id="frameworkcode[% loo.row | html %]">
184
                                [%- FOREACH value IN loo.frameworkcodes %]
184
                                [%- FOREACH value IN loo.frameworkcodes %]
185
                                    [% IF ( value == loo.frameworkcode && value.length>0 ) -%]
185
                                    [% IF ( value == loo.frameworkcode && value.length>0 ) -%]
186
                                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
186
                                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
Lines 196-202 Link Here
196
                            </li>
196
                            </li>
197
                            <li>
197
                            <li>
198
                                <label for="value_builder[% loo.row | html %]">Plugin:</label>
198
                                <label for="value_builder[% loo.row | html %]">Plugin:</label>
199
                                <select name="value_builder" id="value_builder[% loo.row | html %]" size="1">
199
                                <select name="value_builder" id="value_builder[% loo.row | html %]">
200
                                [%- FOREACH value IN loo.value_builders %]
200
                                [%- FOREACH value IN loo.value_builders %]
201
                                    [% IF ( value == loo.value_builder && value.length>0 ) -%]
201
                                    [% IF ( value == loo.value_builder && value.length>0 ) -%]
202
                                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
202
                                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_tag_structure.tt (-1 / +1 lines)
Lines 103-109 Link Here
103
            [% END %]
103
            [% END %]
104
        </li>
104
        </li>
105
        <li><label for="authorised_value">Authorized value: </label>
105
        <li><label for="authorised_value">Authorized value: </label>
106
            <select name="authorised_value" id="authorised_value" size="1">
106
            <select name="authorised_value" id="authorised_value">
107
                <option value=""></option>
107
                <option value=""></option>
108
                [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories( selected => authorised_value ) %]
108
                [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories( selected => authorised_value ) %]
109
            </select>
109
            </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-1 / +1 lines)
Lines 196-202 Link Here
196
    <form action="/cgi-bin/koha/admin/authorised_values.pl" method="get" id="category">
196
    <form action="/cgi-bin/koha/admin/authorised_values.pl" method="get" id="category">
197
        <p>
197
        <p>
198
            <label for="category_search">Show category: </label>
198
            <label for="category_search">Show category: </label>
199
            <select name="searchfield" id="category_search" size="1">
199
            <select name="searchfield" id="category_search">
200
                [% FOR c IN categories %]
200
                [% FOR c IN categories %]
201
                    [% IF c == searchfield %]
201
                    [% IF c == searchfield %]
202
                        <option value="[% c | html %]" selected="selected">[% c | html %]</option>
202
                        <option value="[% c | html %]" selected="selected">[% c | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marc_subfields_structure.tt (-5 / +5 lines)
Lines 136-142 Link Here
136
                                                        [% END %]
136
                                                        [% END %]
137
                                                    </li>
137
                                                    </li>
138
                                                    <li><label for="tab[% loo.row | html %]">Managed in tab: </label>
138
                                                    <li><label for="tab[% loo.row | html %]">Managed in tab: </label>
139
                                                        <select name="tab" tabindex="" size="1" id="tab[% loo.row | html %]">
139
                                                        <select name="tab" tabindex="" id="tab[% loo.row | html %]">
140
                                                        [%- IF ( loo.tab ==  -1 ) -%]
140
                                                        [%- IF ( loo.tab ==  -1 ) -%]
141
                                                            <option value="-1" selected="selected">ignore</option>
141
                                                            <option value="-1" selected="selected">ignore</option>
142
                                                        [%- ELSE -%]
142
                                                        [%- ELSE -%]
Lines 208-214 Link Here
208
                                                    <li>
208
                                                    <li>
209
                                                        <label for="kohafield[% loo.row | html %]">Koha link:</label>
209
                                                        <label for="kohafield[% loo.row | html %]">Koha link:</label>
210
                                                        <!-- This select should be DISABLED; value is submitted by the following hidden input -->
210
                                                        <!-- This select should be DISABLED; value is submitted by the following hidden input -->
211
                                                        <select name="kohafield" id="kohafield[% loo.row | html %]" size="1" disabled>
211
                                                        <select name="kohafield" id="kohafield[% loo.row | html %]" disabled>
212
                                                        [% FOREACH value IN loo.kohafields %]
212
                                                        [% FOREACH value IN loo.kohafields %]
213
                                                        [% IF ( value == loo.kohafield ) %]
213
                                                        [% IF ( value == loo.kohafield ) %]
214
                                                            <option value="[% value | html %]" selected="selected">[% value | html %]</option>
214
                                                            <option value="[% value | html %]" selected="selected">[% value | html %]</option>
Lines 230-236 Link Here
230
                                                <ol>
230
                                                <ol>
231
                                                    <li>
231
                                                    <li>
232
                                                        <label for="authorised_value[% loo.row | html %]">Authorized value:</label>
232
                                                        <label for="authorised_value[% loo.row | html %]">Authorized value:</label>
233
                                                        <select name="authorised_value" id="authorised_value[% loo.row | html %]" size="1">
233
                                                        <select name="authorised_value" id="authorised_value[% loo.row | html %]">
234
                                                        <option value=""></option>
234
                                                        <option value=""></option>
235
                                                        [% FOREACH value IN loo.authorised_values %]
235
                                                        [% FOREACH value IN loo.authorised_values %]
236
                                                            [% IF ( value == loo.authorised_value ) %]
236
                                                            [% IF ( value == loo.authorised_value ) %]
Lines 243-249 Link Here
243
                                                    </li>
243
                                                    </li>
244
                                                    <li>
244
                                                    <li>
245
                                                        <label for="authtypecode[% loo.row | html %]">Thesaurus:</label>
245
                                                        <label for="authtypecode[% loo.row | html %]">Thesaurus:</label>
246
                                                        <select name="authtypecode" id="authtypecode[% loo.row | html %]" size="1">
246
                                                        <select name="authtypecode" id="authtypecode[% loo.row | html %]">
247
                                                        [% FOREACH value IN loo.authtypes %]
247
                                                        [% FOREACH value IN loo.authtypes %]
248
                                                            [% IF ( value == loo.authtypecode ) %]
248
                                                            [% IF ( value == loo.authtypecode ) %]
249
                                                                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
249
                                                                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
Lines 255-261 Link Here
255
                                                    </li>
255
                                                    </li>
256
                                                    <li>
256
                                                    <li>
257
                                                        <label for="value_builder[% loo.row | html %]">Plugin:</label>
257
                                                        <label for="value_builder[% loo.row | html %]">Plugin:</label>
258
                                                        <select name="value_builder" id="value_builder[% loo.row | html %]" size="1">
258
                                                        <select name="value_builder" id="value_builder[% loo.row | html %]">
259
                                                        [% FOREACH value IN loo.value_builders %]
259
                                                        [% FOREACH value IN loo.value_builders %]
260
                                                            [% IF ( value == loo.value_builder ) %]
260
                                                            [% IF ( value == loo.value_builder ) %]
261
                                                                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
261
                                                                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt (-1 / +1 lines)
Lines 101-107 Link Here
101
        <input id="ind2_defaultvalue" type="text" name="ind2_defaultvalue" value="[% ind2_defaultvalue | html %]" maxlength="1" size="1" />
101
        <input id="ind2_defaultvalue" type="text" name="ind2_defaultvalue" value="[% ind2_defaultvalue | html %]" maxlength="1" size="1" />
102
    </li>
102
    </li>
103
    <li><label for="authorised_value">Authorized value: </label>
103
    <li><label for="authorised_value">Authorized value: </label>
104
        <select name="authorised_value" id="authorised_value" size="1">
104
        <select name="authorised_value" id="authorised_value">
105
            <option value=""></option>
105
            <option value=""></option>
106
            [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories( selected => authorised_value ) %]
106
            [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories( selected => authorised_value ) %]
107
        </select>
107
        </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/authorities/authorities.tt (-2 / +2 lines)
Lines 385-393 function confirmnotdup(redirect){ Link Here
385
                <div id="field_marceditor[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]" class="field_marceditor">
385
                <div id="field_marceditor[% subfield_loo.tag | html %][% subfield_loo.subfield | html %][% subfield_loo.random | html %]" class="field_marceditor">
386
                [% IF ( mv.type == 'select' ) %]
386
                [% IF ( mv.type == 'select' ) %]
387
                    [% IF mv.category AND CAN_user_parameters_manage_auth_values %]
387
                    [% IF mv.category AND CAN_user_parameters_manage_auth_values %]
388
                        <select name="[%- mv.name | html -%]" tabindex="1" size="1" class="input_marceditor" id="[%- mv.id | html -%]" data-category="[% mv.category | html %]">
388
                        <select name="[%- mv.name | html -%]" tabindex="1" class="input_marceditor" id="[%- mv.id | html -%]" data-category="[% mv.category | html %]">
389
                    [% ELSE %]
389
                    [% ELSE %]
390
                        <select name="[%- mv.name | html -%]" tabindex="1" size="1" class="input_marceditor select2" id="[%- mv.id | html -%]">
390
                        <select name="[%- mv.name | html -%]" tabindex="1" class="input_marceditor select2" id="[%- mv.id | html -%]">
391
                    [% END %]
391
                    [% END %]
392
392
393
                     [% FOREACH aval IN mv.values %]
393
                     [% FOREACH aval IN mv.values %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/labeledMARCdetail.tt (-1 / +1 lines)
Lines 44-50 Link Here
44
                        <h1>Labeled MARC biblio : [% biblionumber | html %]  ( [% bibliotitle | html %] )</h1>
44
                        <h1>Labeled MARC biblio : [% biblionumber | html %]  ( [% bibliotitle | html %] )</h1>
45
					[% END %]
45
					[% END %]
46
                    <p><strong>With framework:
46
                    <p><strong>With framework:
47
                    <select name="Frameworks" id="Frameworks" size="1" onchange="Changefwk(this);">
47
                    <select name="Frameworks" id="Frameworks" onchange="Changefwk(this);">
48
                        <option value="">Default</option>
48
                        <option value="">Default</option>
49
                        [% FOREACH framework IN frameworks %]
49
                        [% FOREACH framework IN frameworks %]
50
                        [% IF framework.frameworkcode == frameworkcode %]
50
                        [% IF framework.frameworkcode == frameworkcode %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbiblio.tt (-2 / +2 lines)
Lines 1056-1064 function PopupMARCFieldDoc(field) { Link Here
1056
                                                        <textarea cols="70" rows="4" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" class="input_marceditor" tabindex="1">[%- mv.value | html -%]</textarea>
1056
                                                        <textarea cols="70" rows="4" id="[%- mv.id | html -%]" name="[%- mv.name | html -%]" class="input_marceditor" tabindex="1">[%- mv.value | html -%]</textarea>
1057
                                                    [% ELSIF ( mv.type == 'select' ) %]
1057
                                                    [% ELSIF ( mv.type == 'select' ) %]
1058
                                                    [% IF mv.category AND CAN_user_parameters_manage_auth_values %]
1058
                                                    [% IF mv.category AND CAN_user_parameters_manage_auth_values %]
1059
                                                        <select name="[%- mv.name | html -%]" tabindex="1" size="1" class="input_marceditor" id="[%- mv.id | html -%]" data-category="[% mv.category | html %]">
1059
                                                        <select name="[%- mv.name | html -%]" tabindex="1" class="input_marceditor" id="[%- mv.id | html -%]" data-category="[% mv.category | html %]">
1060
                                                    [% ELSE %]
1060
                                                    [% ELSE %]
1061
                                                        <select name="[%- mv.name | html -%]" tabindex="1" size="1" class="input_marceditor select2" id="[%- mv.id | html -%]">
1061
                                                        <select name="[%- mv.name | html -%]" tabindex="1" class="input_marceditor select2" id="[%- mv.id | html -%]">
1062
                                                    [% END %]
1062
                                                    [% END %]
1063
                                                        [% FOREACH aval IN mv.values %]
1063
                                                        [% FOREACH aval IN mv.values %]
1064
                                                            [% IF aval == mv.default %]
1064
                                                            [% IF aval == mv.default %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt (-2 / +2 lines)
Lines 160-168 Link Here
160
                    <input type="hidden" id="[%- mv.id | html -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength | html -%]" value="[%- mv.value | html -%]">
160
                    <input type="hidden" id="[%- mv.id | html -%]" name="field_value" class="input_marceditor" size="50" maxlength="[%- mv.maxlength | html -%]" value="[%- mv.value | html -%]">
161
                [% ELSIF ( mv.type == 'select' ) %]
161
                [% ELSIF ( mv.type == 'select' ) %]
162
                    [% IF ( mv.readonly || ite.IS_RETURN_CLAIM ) %]
162
                    [% IF ( mv.readonly || ite.IS_RETURN_CLAIM ) %]
163
                        <select name="field_value" id="[%- mv.id | html -%]" size="1" class="input_marceditor" readonly="readonly" disabled="disabled">
163
                        <select name="field_value" id="[%- mv.id | html -%]" class="input_marceditor" readonly="readonly" disabled="disabled">
164
                    [% ELSE %]
164
                    [% ELSE %]
165
                        <select name="field_value" id="[%- mv.id | html -%]" size="1" class="input_marceditor" data-category="[% mv.category | html %]">
165
                        <select name="field_value" id="[%- mv.id | html -%]" class="input_marceditor" data-category="[% mv.category | html %]">
166
                    [% END %]
166
                    [% END %]
167
                    [% FOREACH aval IN mv.values %]
167
                    [% FOREACH aval IN mv.values %]
168
                        [% IF aval == mv.default %]
168
                        [% IF aval == mv.default %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_007.tt (-103 / +103 lines)
Lines 138-144 Link Here
138
                    _("01 Specific material designation") +
138
                    _("01 Specific material designation") +
139
                    '</label></td> \
139
                    '</label></td> \
140
                               <td> \
140
                               <td> \
141
                                <select name="f1" id="f1" size="1"> \
141
                                <select name="f1" id="f1"> \
142
                                 [% IF ( f1d ) %] \
142
                                 [% IF ( f1d ) %] \
143
                                  <option value="d" selected="selected">' +
143
                                  <option value="d" selected="selected">' +
144
                    _("d- Atlas") +
144
                    _("d- Atlas") +
Lines 246-252 Link Here
246
                    _("02 Undefined") +
246
                    _("02 Undefined") +
247
                    '</label></td> \
247
                    '</label></td> \
248
                               <td> \
248
                               <td> \
249
                                <select name="f2" id="f2" size="1"> \
249
                                <select name="f2" id="f2"> \
250
                                 [% IF ( f2exclamation ) %] \
250
                                 [% IF ( f2exclamation ) %] \
251
                                  <option value=" " selected="selected">' +
251
                                  <option value=" " selected="selected">' +
252
                    _("#- Undefined") +
252
                    _("#- Undefined") +
Lines 264-270 Link Here
264
                    _("03 Color") +
264
                    _("03 Color") +
265
                    '</label></td> \
265
                    '</label></td> \
266
                               <td> \
266
                               <td> \
267
                                <select name="f3" id="f3" size="1"> \
267
                                <select name="f3" id="f3"> \
268
                                 [% IF ( f3a ) %] \
268
                                 [% IF ( f3a ) %] \
269
                                  <option value="a" selected="selected">' +
269
                                  <option value="a" selected="selected">' +
270
                    _("a- One color") +
270
                    _("a- One color") +
Lines 300-306 Link Here
300
                    _("04 Physical medium") +
300
                    _("04 Physical medium") +
301
                    '</label></td> \
301
                    '</label></td> \
302
                               <td> \
302
                               <td> \
303
                                <select name="f4" id="f4" size="1"> \
303
                                <select name="f4" id="f4"> \
304
                                 [% IF ( f4a ) %] \
304
                                 [% IF ( f4a ) %] \
305
                                  <option value="a" selected="selected">' +
305
                                  <option value="a" selected="selected">' +
306
                    _("a- Paper") +
306
                    _("a- Paper") +
Lines 516-522 Link Here
516
                    _("05 Type of reproduction") +
516
                    _("05 Type of reproduction") +
517
                    '</label></td> \
517
                    '</label></td> \
518
                               <td> \
518
                               <td> \
519
                                <select name="f5" id="f5" size="1"> \
519
                                <select name="f5" id="f5"> \
520
                                 [% IF ( f5f ) %] \
520
                                 [% IF ( f5f ) %] \
521
                                  <option value="f" selected="selected">' +
521
                                  <option value="f" selected="selected">' +
522
                    _("f- Facsimile") +
522
                    _("f- Facsimile") +
Lines 570-576 Link Here
570
                    _("06 Production/reproduction details") +
570
                    _("06 Production/reproduction details") +
571
                    '</label></td> \
571
                    '</label></td> \
572
                               <td> \
572
                               <td> \
573
                                <select name="f6" id="f6" size="1"> \
573
                                <select name="f6" id="f6"> \
574
                                 [% IF ( f6a ) %] \
574
                                 [% IF ( f6a ) %] \
575
                                  <option value="a" selected="selected">' +
575
                                  <option value="a" selected="selected">' +
576
                    _("a- Photocopy, blueline print") +
576
                    _("a- Photocopy, blueline print") +
Lines 642-648 Link Here
642
                    _("07 Positive/negative aspect") +
642
                    _("07 Positive/negative aspect") +
643
                    '</label></td> \
643
                    '</label></td> \
644
                               <td> \
644
                               <td> \
645
                                <select name="f7" id="f7" size="1"> \
645
                                <select name="f7" id="f7"> \
646
                                 [% IF ( f7a ) %] \
646
                                 [% IF ( f7a ) %] \
647
                                  <option value="a" selected="selected">' +
647
                                  <option value="a" selected="selected">' +
648
                    _("a- Positive") +
648
                    _("a- Positive") +
Lines 708-714 Link Here
708
                    _("01 Specific material designation") +
708
                    _("01 Specific material designation") +
709
                    '</label></td> \
709
                    '</label></td> \
710
                               <td> \
710
                               <td> \
711
                                <select id="f1" name="f1" size="1"> \
711
                                <select id="f1" name="f1"> \
712
                                 [% IF ( f1a ) %] \
712
                                 [% IF ( f1a ) %] \
713
                                  <option value="a" selected="selected">' +
713
                                  <option value="a" selected="selected">' +
714
                    _("a- Tape cartridge") +
714
                    _("a- Tape cartridge") +
Lines 861-867 Link Here
861
                    _("02 Undefined") +
861
                    _("02 Undefined") +
862
                    '</label></td> \
862
                    '</label></td> \
863
                               <td> \
863
                               <td> \
864
                                <select id="f2" name="f2" size="1"> \
864
                                <select id="f2" name="f2"> \
865
                                 [% IF ( f2exclamation ) %] \
865
                                 [% IF ( f2exclamation ) %] \
866
                                  <option value=" " selected="selected">' +
866
                                  <option value=" " selected="selected">' +
867
                    _("#- Undefined") +
867
                    _("#- Undefined") +
Lines 879-885 Link Here
879
                    _("03 Color") +
879
                    _("03 Color") +
880
                    '</label></td> \
880
                    '</label></td> \
881
                                <td> \
881
                                <td> \
882
                                 <select id="f3" name="f3" size="1"> \
882
                                 <select id="f3" name="f3"> \
883
                                 [% IF ( f3a ) %] \
883
                                 [% IF ( f3a ) %] \
884
                                  <option value="a" selected="selected">' +
884
                                  <option value="a" selected="selected">' +
885
                    _("a- One color") +
885
                    _("a- One color") +
Lines 969-975 Link Here
969
                    _("04 Dimensions") +
969
                    _("04 Dimensions") +
970
                    '</label></td> \
970
                    '</label></td> \
971
                                <td> \
971
                                <td> \
972
                                 <select id="f4" name="f4" size="1"> \
972
                                 <select id="f4" name="f4"> \
973
                                 [% IF ( f4a ) %] \
973
                                 [% IF ( f4a ) %] \
974
                                  <option value="a" selected="selected">' +
974
                                  <option value="a" selected="selected">' +
975
                    _("a- 3 1/2 in.") +
975
                    _("a- 3 1/2 in.") +
Lines 1077-1083 Link Here
1077
                    _("05 Sound") +
1077
                    _("05 Sound") +
1078
                    '</label></td> \
1078
                    '</label></td> \
1079
                                <td> \
1079
                                <td> \
1080
                                 <select id="f5" name="f5" size="1"> \
1080
                                 <select id="f5" name="f5"> \
1081
                                 [% IF ( f5exclamation ) %] \
1081
                                 [% IF ( f5exclamation ) %] \
1082
                                  <option value=" " selected="selected">' +
1082
                                  <option value=" " selected="selected">' +
1083
                    _("#- No sound (silent)") +
1083
                    _("#- No sound (silent)") +
Lines 1174-1180 Link Here
1174
                    _("09 File Formats") +
1174
                    _("09 File Formats") +
1175
                    '</label></td> \
1175
                    '</label></td> \
1176
                                <td> \
1176
                                <td> \
1177
                                 <select id="f7" name="f7" size="1"> \
1177
                                 <select id="f7" name="f7"> \
1178
                                 [% IF ( f7a ) %] \
1178
                                 [% IF ( f7a ) %] \
1179
                                  <option value="a" selected="selected">' +
1179
                                  <option value="a" selected="selected">' +
1180
                    _("a- One file format") +
1180
                    _("a- One file format") +
Lines 1219-1225 Link Here
1219
                    _("10 Quality assurance target(s)") +
1219
                    _("10 Quality assurance target(s)") +
1220
                    '</label></td> \
1220
                    '</label></td> \
1221
                                <td> \
1221
                                <td> \
1222
                                 <select id="f8" name="f8" size="1"> \
1222
                                 <select id="f8" name="f8"> \
1223
                                 [% IF ( f8a ) %] \
1223
                                 [% IF ( f8a ) %] \
1224
                                  <option value="a" selected="selected">' +
1224
                                  <option value="a" selected="selected">' +
1225
                    _("a- Absent") +
1225
                    _("a- Absent") +
Lines 1273-1279 Link Here
1273
                    _("11 Antecedent/Source") +
1273
                    _("11 Antecedent/Source") +
1274
                    '</label></td> \
1274
                    '</label></td> \
1275
                                <td> \
1275
                                <td> \
1276
                                 <select id="f9" name="f9" size="1"> \
1276
                                 <select id="f9" name="f9"> \
1277
                                 [% IF ( f9a ) %] \
1277
                                 [% IF ( f9a ) %] \
1278
                                  <option value="a" selected="selected">' +
1278
                                  <option value="a" selected="selected">' +
1279
                    _("a- File reproduced from original") +
1279
                    _("a- File reproduced from original") +
Lines 1354-1360 Link Here
1354
                    _("12 Level of compression") +
1354
                    _("12 Level of compression") +
1355
                    '</label></td> \
1355
                    '</label></td> \
1356
                                <td> \
1356
                                <td> \
1357
                                 <select id="f10" name="f10" size="1"> \
1357
                                 <select id="f10" name="f10"> \
1358
                                 [% IF ( f10a ) %] \
1358
                                 [% IF ( f10a ) %] \
1359
                                  <option value="a" selected="selected">' +
1359
                                  <option value="a" selected="selected">' +
1360
                    _("a- Uncompressed") +
1360
                    _("a- Uncompressed") +
Lines 1417-1423 Link Here
1417
                    _("13 Reformatting Quality") +
1417
                    _("13 Reformatting Quality") +
1418
                    '</label></td> \
1418
                    '</label></td> \
1419
                                <td> \
1419
                                <td> \
1420
                                 <select id="f11" name="f11" size="1"> \
1420
                                 <select id="f11" name="f11"> \
1421
                                 [% IF ( f11a ) %] \
1421
                                 [% IF ( f11a ) %] \
1422
                                  <option value="a" selected="selected">' +
1422
                                  <option value="a" selected="selected">' +
1423
                    _("a- Access") +
1423
                    _("a- Access") +
Lines 1492-1498 Link Here
1492
                    _("01 Specific material designation") +
1492
                    _("01 Specific material designation") +
1493
                    '</label></td> \
1493
                    '</label></td> \
1494
                               <td> \
1494
                               <td> \
1495
                                <select name="f1" id="f1" size="1"> \
1495
                                <select name="f1" id="f1"> \
1496
                                 [% IF ( f1a ) %] \
1496
                                 [% IF ( f1a ) %] \
1497
                                  <option value="a" selected="selected">' +
1497
                                  <option value="a" selected="selected">' +
1498
                    _("a- Celestial globe") +
1498
                    _("a- Celestial globe") +
Lines 1564-1570 Link Here
1564
                    _("02 Undefined") +
1564
                    _("02 Undefined") +
1565
                    '</label></td> \
1565
                    '</label></td> \
1566
                               <td> \
1566
                               <td> \
1567
                                <select name="f2" id="f2" size="1"> \
1567
                                <select name="f2" id="f2"> \
1568
                                 [% IF ( f2exclamation ) %] \
1568
                                 [% IF ( f2exclamation ) %] \
1569
                                  <option value=" " selected="selected">' +
1569
                                  <option value=" " selected="selected">' +
1570
                    _("#- Undefined") +
1570
                    _("#- Undefined") +
Lines 1582-1588 Link Here
1582
                    _("03 Color") +
1582
                    _("03 Color") +
1583
                    '</label></td> \
1583
                    '</label></td> \
1584
                               <td> \
1584
                               <td> \
1585
                                <select name="f3" id="f3" size="1"> \
1585
                                <select name="f3" id="f3"> \
1586
                                 [% IF ( f3a ) %] \
1586
                                 [% IF ( f3a ) %] \
1587
                                  <option value="a" selected="selected">' +
1587
                                  <option value="a" selected="selected">' +
1588
                    _("a- One color") +
1588
                    _("a- One color") +
Lines 1618-1624 Link Here
1618
                    _("04 Physical Medium") +
1618
                    _("04 Physical Medium") +
1619
                    '</label></td> \
1619
                    '</label></td> \
1620
                               <td> \
1620
                               <td> \
1621
                                <select name="f4" id="f4" size="1"> \
1621
                                <select name="f4" id="f4"> \
1622
                                 [% IF ( f4a ) %] \
1622
                                 [% IF ( f4a ) %] \
1623
                                  <option value="a" selected="selected">' +
1623
                                  <option value="a" selected="selected">' +
1624
                    _("a- Paper") +
1624
                    _("a- Paper") +
Lines 1771-1777 Link Here
1771
                    _("05 Type of Reproduction") +
1771
                    _("05 Type of Reproduction") +
1772
                    '</label></td> \
1772
                    '</label></td> \
1773
                               <td> \
1773
                               <td> \
1774
                                <select name="f5" id="f5" size="1"> \
1774
                                <select name="f5" id="f5"> \
1775
                                 [% IF ( f5f ) %] \
1775
                                 [% IF ( f5f ) %] \
1776
                                  <option value="f" selected="selected">' +
1776
                                  <option value="f" selected="selected">' +
1777
                    _("f- Facsimile") +
1777
                    _("f- Facsimile") +
Lines 1837-1843 Link Here
1837
                    _("01 Specific material designation") +
1837
                    _("01 Specific material designation") +
1838
                    '</label></td> \
1838
                    '</label></td> \
1839
                               <td> \
1839
                               <td> \
1840
                                <select name="f1" id="f1" size="1"> \
1840
                                <select name="f1" id="f1"> \
1841
                     [% IF ( f1a ) %] \
1841
                     [% IF ( f1a ) %] \
1842
                                  <option value="a" selected="selected">' +
1842
                                  <option value="a" selected="selected">' +
1843
                    _("a- Moon") +
1843
                    _("a- Moon") +
Lines 1909-1915 Link Here
1909
                    _("02 Undefined") +
1909
                    _("02 Undefined") +
1910
                    '</label></td> \
1910
                    '</label></td> \
1911
                               <td> \
1911
                               <td> \
1912
                                <select name="f2" id="f2" size="1"> \
1912
                                <select name="f2" id="f2"> \
1913
                                 [% IF ( f2exclamation ) %] \
1913
                                 [% IF ( f2exclamation ) %] \
1914
                                  <option value=" " selected="selected">' +
1914
                                  <option value=" " selected="selected">' +
1915
                    _("#- Undefined") +
1915
                    _("#- Undefined") +
Lines 1927-1933 Link Here
1927
                    _("03 Class of braille writing") +
1927
                    _("03 Class of braille writing") +
1928
                    '</label></td> \
1928
                    '</label></td> \
1929
                               <td> \
1929
                               <td> \
1930
                                <select name="f3" id="f3" size="1"> \
1930
                                <select name="f3" id="f3"> \
1931
                                 [% IF ( f3exclamation ) %] \
1931
                                 [% IF ( f3exclamation ) %] \
1932
                                  <option value=" " selected="selected">' +
1932
                                  <option value=" " selected="selected">' +
1933
                    _("#- No specified class of braille writing") +
1933
                    _("#- No specified class of braille writing") +
Lines 2034-2040 Link Here
2034
                    _("04 Class of braille writing (2nd option)") +
2034
                    _("04 Class of braille writing (2nd option)") +
2035
                    '</label></td> \
2035
                    '</label></td> \
2036
                               <td> \
2036
                               <td> \
2037
                                <select name="f4" id="f4" size="1"> \
2037
                                <select name="f4" id="f4"> \
2038
                                 [% IF ( f4exclamation ) %] \
2038
                                 [% IF ( f4exclamation ) %] \
2039
                                  <option value=" " selected="selected">' +
2039
                                  <option value=" " selected="selected">' +
2040
                    _("#- No specified class of braille writing") +
2040
                    _("#- No specified class of braille writing") +
Lines 2142-2148 Link Here
2142
                    _("05 Level of contraction") +
2142
                    _("05 Level of contraction") +
2143
                    '</label></td> \
2143
                    '</label></td> \
2144
                               <td> \
2144
                               <td> \
2145
                                <select name="f5" id="f5" size="1"> \
2145
                                <select name="f5" id="f5"> \
2146
                                 [% IF ( f5a ) %] \
2146
                                 [% IF ( f5a ) %] \
2147
                                  <option value="a" selected="selected">' +
2147
                                  <option value="a" selected="selected">' +
2148
                    _("a- Uncontracted") +
2148
                    _("a- Uncontracted") +
Lines 2214-2220 Link Here
2214
                    _("06 Braille music format") +
2214
                    _("06 Braille music format") +
2215
                    '</label></td> \
2215
                    '</label></td> \
2216
                               <td> \
2216
                               <td> \
2217
                                <select name="f6" id="f6" size="1"> \
2217
                                <select name="f6" id="f6"> \
2218
                                 [% IF ( f6exclamation ) %] \
2218
                                 [% IF ( f6exclamation ) %] \
2219
                                  <option value=" " selected="selected">' +
2219
                                  <option value=" " selected="selected">' +
2220
                    _("#- No specified braille music format") +
2220
                    _("#- No specified braille music format") +
Lines 2375-2381 Link Here
2375
                    _("07 Braille music format (2nd option)") +
2375
                    _("07 Braille music format (2nd option)") +
2376
                    '</label></td> \
2376
                    '</label></td> \
2377
                               <td> \
2377
                               <td> \
2378
                                <select name="f7" id="f7" size="1"> \
2378
                                <select name="f7" id="f7"> \
2379
                                 [% IF ( f7exclamation ) %] \
2379
                                 [% IF ( f7exclamation ) %] \
2380
                                  <option value=" " selected="selected">' +
2380
                                  <option value=" " selected="selected">' +
2381
                    _("#- No specified braille music format") +
2381
                    _("#- No specified braille music format") +
Lines 2536-2542 Link Here
2536
                    _("08 Braille music format (3rd option)") +
2536
                    _("08 Braille music format (3rd option)") +
2537
                    '</label></td> \
2537
                    '</label></td> \
2538
                               <td> \
2538
                               <td> \
2539
                                <select name="f8" id="f8" size="1"> \
2539
                                <select name="f8" id="f8"> \
2540
                                 [% IF ( f8exclamation ) %] \
2540
                                 [% IF ( f8exclamation ) %] \
2541
                                  <option value=" " selected="selected">' +
2541
                                  <option value=" " selected="selected">' +
2542
                    _("#- No specified braille music format") +
2542
                    _("#- No specified braille music format") +
Lines 2698-2704 Link Here
2698
                    _("09 Special physical characteristics") +
2698
                    _("09 Special physical characteristics") +
2699
                    '</label></td> \
2699
                    '</label></td> \
2700
                               <td> \
2700
                               <td> \
2701
                                <select name="f9" id="f9" size="1"> \
2701
                                <select name="f9" id="f9"> \
2702
                                 [% IF ( f9a ) %] \
2702
                                 [% IF ( f9a ) %] \
2703
                                  <option value="a" selected="selected">' +
2703
                                  <option value="a" selected="selected">' +
2704
                    _("a- Print/braille") +
2704
                    _("a- Print/braille") +
Lines 2773-2779 Link Here
2773
                    _("01 Specific material designation") +
2773
                    _("01 Specific material designation") +
2774
                    '</label></td> \
2774
                    '</label></td> \
2775
                               <td> \
2775
                               <td> \
2776
                                <select name="f1" id="f1" size="1"> \
2776
                                <select name="f1" id="f1"> \
2777
                     [% IF ( f1c ) %] \
2777
                     [% IF ( f1c ) %] \
2778
                                  <option value="c" selected="selected">' +
2778
                                  <option value="c" selected="selected">' +
2779
                    _("c- Filmstrip cartridge") +
2779
                    _("c- Filmstrip cartridge") +
Lines 2864-2870 Link Here
2864
                    _("02 Undefined") +
2864
                    _("02 Undefined") +
2865
                    '</label></td> \
2865
                    '</label></td> \
2866
                               <td> \
2866
                               <td> \
2867
                                <select name="f2" id="f2" size="1"> \
2867
                                <select name="f2" id="f2"> \
2868
                                 [% IF ( f2exclamation ) %] \
2868
                                 [% IF ( f2exclamation ) %] \
2869
                                  <option value=" " selected="selected">' +
2869
                                  <option value=" " selected="selected">' +
2870
                    _("#- Undefined") +
2870
                    _("#- Undefined") +
Lines 2882-2888 Link Here
2882
                    _("03 Color") +
2882
                    _("03 Color") +
2883
                    '</label></td> \
2883
                    '</label></td> \
2884
                               <td> \
2884
                               <td> \
2885
                                <select name="f3" id="f3" size="1"> \
2885
                                <select name="f3" id="f3"> \
2886
                                 [% IF ( f3a ) %] \
2886
                                 [% IF ( f3a ) %] \
2887
                                  <option value="a" selected="selected">' +
2887
                                  <option value="a" selected="selected">' +
2888
                    _("a- One color") +
2888
                    _("a- One color") +
Lines 2972-2978 Link Here
2972
                    _("04 Base of emulsion") +
2972
                    _("04 Base of emulsion") +
2973
                    '</label></td> \
2973
                    '</label></td> \
2974
                               <td> \
2974
                               <td> \
2975
                                <select name="f4" id="f4" size="1"> \
2975
                                <select name="f4" id="f4"> \
2976
                     [% IF ( f4d ) %] \
2976
                     [% IF ( f4d ) %] \
2977
                                  <option value="d" selected="selected">' +
2977
                                  <option value="d" selected="selected">' +
2978
                    _("d- Glass") +
2978
                    _("d- Glass") +
Lines 3062-3068 Link Here
3062
                    _("05 Sound on medium or separate") +
3062
                    _("05 Sound on medium or separate") +
3063
                    '</label></td> \
3063
                    '</label></td> \
3064
                               <td> \
3064
                               <td> \
3065
                                <select name="f5" id="f5" size="1"> \
3065
                                <select name="f5" id="f5"> \
3066
                                 [% IF ( f5exclamation ) %] \
3066
                                 [% IF ( f5exclamation ) %] \
3067
                                  <option value=" " selected="selected">' +
3067
                                  <option value=" " selected="selected">' +
3068
                    _("#- No sound (silent)") +
3068
                    _("#- No sound (silent)") +
Lines 3116-3122 Link Here
3116
                    _("06 Medium for sound") +
3116
                    _("06 Medium for sound") +
3117
                    '</label></td> \
3117
                    '</label></td> \
3118
                               <td> \
3118
                               <td> \
3119
                                <select name="f6" id="f6" size="1"> \
3119
                                <select name="f6" id="f6"> \
3120
                                 [% IF ( f6exclamation ) %] \
3120
                                 [% IF ( f6exclamation ) %] \
3121
                                  <option value=" " selected="selected">' +
3121
                                  <option value=" " selected="selected">' +
3122
                    _("#- No sound (silent)") +
3122
                    _("#- No sound (silent)") +
Lines 3242-3248 Link Here
3242
                    _("07 Dimensions") +
3242
                    _("07 Dimensions") +
3243
                    '</label></td> \
3243
                    '</label></td> \
3244
                               <td> \
3244
                               <td> \
3245
                                <select name="f7" id="f7" size="1"> \
3245
                                <select name="f7" id="f7"> \
3246
                                 [% IF ( f7a ) %] \
3246
                                 [% IF ( f7a ) %] \
3247
                                  <option value="a" selected="selected">' +
3247
                                  <option value="a" selected="selected">' +
3248
                    _("a- Standard 8mm. film width") +
3248
                    _("a- Standard 8mm. film width") +
Lines 3413-3419 Link Here
3413
                    _("08 Secondary support material") +
3413
                    _("08 Secondary support material") +
3414
                    '</label></td> \
3414
                    '</label></td> \
3415
                               <td> \
3415
                               <td> \
3416
                                <select name="f8" id="f8" size="1"> \
3416
                                <select name="f8" id="f8"> \
3417
                                 [% IF ( f8exclamation ) %] \
3417
                                 [% IF ( f8exclamation ) %] \
3418
                                  <option value=" " selected="selected">' +
3418
                                  <option value=" " selected="selected">' +
3419
                    _("#- No secondary support") +
3419
                    _("#- No secondary support") +
Lines 3533-3539 Link Here
3533
                    _("01 Specific material designation") +
3533
                    _("01 Specific material designation") +
3534
                    '</label></td> \
3534
                    '</label></td> \
3535
                               <td> \
3535
                               <td> \
3536
                                <select id="f1" name="f1" size="1"> \
3536
                                <select id="f1" name="f1"> \
3537
                                 [% IF ( f1a ) %] \
3537
                                 [% IF ( f1a ) %] \
3538
                                  <option value="a" selected="selected">' +
3538
                                  <option value="a" selected="selected">' +
3539
                    _("a- Aperture card") +
3539
                    _("a- Aperture card") +
Lines 3650-3656 Link Here
3650
                    _("02 Undefined") +
3650
                    _("02 Undefined") +
3651
                    '</label></td> \
3651
                    '</label></td> \
3652
                               <td> \
3652
                               <td> \
3653
                                <select name="f2" id="f2" size="1"> \
3653
                                <select name="f2" id="f2"> \
3654
                                 [% IF ( f2exclamation ) %] \
3654
                                 [% IF ( f2exclamation ) %] \
3655
                                  <option value=" " selected="selected">' +
3655
                                  <option value=" " selected="selected">' +
3656
                    _("#- Undefined") +
3656
                    _("#- Undefined") +
Lines 3668-3674 Link Here
3668
                    _("03 Positive/negative aspect") +
3668
                    _("03 Positive/negative aspect") +
3669
                    '</label></td> \
3669
                    '</label></td> \
3670
                                <td> \
3670
                                <td> \
3671
                                 <select id="f3" name="f3" size="1"> \
3671
                                 <select id="f3" name="f3"> \
3672
                                 [% IF ( f3a ) %] \
3672
                                 [% IF ( f3a ) %] \
3673
                                  <option value="a" selected="selected">' +
3673
                                  <option value="a" selected="selected">' +
3674
                    _("a- Positive") +
3674
                    _("a- Positive") +
Lines 3722-3728 Link Here
3722
                    _("04 Dimensions") +
3722
                    _("04 Dimensions") +
3723
                    '</label></td> \
3723
                    '</label></td> \
3724
                                <td> \
3724
                                <td> \
3725
                                 <select id="f4" name="f4" size="1"> \
3725
                                 <select id="f4" name="f4"> \
3726
                                 [% IF ( f4a ) %] \
3726
                                 [% IF ( f4a ) %] \
3727
                                  <option value="a" selected="selected">' +
3727
                                  <option value="a" selected="selected">' +
3728
                    _("a- 8 mm. microfilm") +
3728
                    _("a- 8 mm. microfilm") +
Lines 3839-3845 Link Here
3839
                    _("05 Reduction ratio range") +
3839
                    _("05 Reduction ratio range") +
3840
                    '</label></td> \
3840
                    '</label></td> \
3841
                                <td> \
3841
                                <td> \
3842
                                 <select id="f5" name="f5" size="1"> \
3842
                                 <select id="f5" name="f5"> \
3843
                                 [% IF ( f5a ) %] \
3843
                                 [% IF ( f5a ) %] \
3844
                                  <option value="a" selected="selected">' +
3844
                                  <option value="a" selected="selected">' +
3845
                    _("a- Low reduction ratio") +
3845
                    _("a- Low reduction ratio") +
Lines 3929-3935 Link Here
3929
                    _("09 Color") +
3929
                    _("09 Color") +
3930
                    '</label></td> \
3930
                    '</label></td> \
3931
                                <td> \
3931
                                <td> \
3932
                                 <select id="f7" name="f7" size="1"> \
3932
                                 <select id="f7" name="f7"> \
3933
                                 [% IF ( f7b ) %] \
3933
                                 [% IF ( f7b ) %] \
3934
                                  <option value="b" selected="selected">' +
3934
                                  <option value="b" selected="selected">' +
3935
                    _("b- Black-and-white") +
3935
                    _("b- Black-and-white") +
Lines 3992-3998 Link Here
3992
                    _("10 Emulsion on film") +
3992
                    _("10 Emulsion on film") +
3993
                    '</label></td> \
3993
                    '</label></td> \
3994
                                <td> \
3994
                                <td> \
3995
                                 <select id="f8" name="f8" size="1"> \
3995
                                 <select id="f8" name="f8"> \
3996
                                 [% IF ( f8a ) %] \
3996
                                 [% IF ( f8a ) %] \
3997
                                  <option value="a" selected="selected">' +
3997
                                  <option value="a" selected="selected">' +
3998
                    _("a- Silver halide") +
3998
                    _("a- Silver halide") +
Lines 4073-4079 Link Here
4073
                    _("11 Generation") +
4073
                    _("11 Generation") +
4074
                    '</label></td> \
4074
                    '</label></td> \
4075
                                <td> \
4075
                                <td> \
4076
                                 <select id="f9" name="f9" size="1"> \
4076
                                 <select id="f9" name="f9"> \
4077
                                 [% IF ( f9a ) %] \
4077
                                 [% IF ( f9a ) %] \
4078
                                  <option value="a" selected="selected">' +
4078
                                  <option value="a" selected="selected">' +
4079
                    _("a- First generation (master)") +
4079
                    _("a- First generation (master)") +
Lines 4136-4142 Link Here
4136
                    _("12 Base of film") +
4136
                    _("12 Base of film") +
4137
                    '</label></td> \
4137
                    '</label></td> \
4138
                                <td> \
4138
                                <td> \
4139
                                 <select id="f10" name="f10" size="1"> \
4139
                                 <select id="f10" name="f10"> \
4140
                                 [% IF ( f10a ) %] \
4140
                                 [% IF ( f10a ) %] \
4141
                                  <option value="a" selected="selected">' +
4141
                                  <option value="a" selected="selected">' +
4142
                    _("a- Safety base, undetermined") +
4142
                    _("a- Safety base, undetermined") +
Lines 4265-4271 Link Here
4265
                    _("01 Specific material designation") +
4265
                    _("01 Specific material designation") +
4266
                    '</label></td> \
4266
                    '</label></td> \
4267
                               <td> \
4267
                               <td> \
4268
                                <select name="f1" id="f1" size="1"> \
4268
                                <select name="f1" id="f1"> \
4269
                                 [% IF ( f1a ) %] \
4269
                                 [% IF ( f1a ) %] \
4270
                                  <option value="a" selected="selected">' +
4270
                                  <option value="a" selected="selected">' +
4271
                    _("a- Activity card") +
4271
                    _("a- Activity card") +
Lines 4463-4469 Link Here
4463
                    _("02 Undefined") +
4463
                    _("02 Undefined") +
4464
                    '</label></td> \
4464
                    '</label></td> \
4465
                               <td> \
4465
                               <td> \
4466
                                <select name="f2" id="f2" size="1"> \
4466
                                <select name="f2" id="f2"> \
4467
                                 [% IF ( f2exclamation ) %] \
4467
                                 [% IF ( f2exclamation ) %] \
4468
                                  <option value=" " selected="selected">' +
4468
                                  <option value=" " selected="selected">' +
4469
                    _("#- Undefined") +
4469
                    _("#- Undefined") +
Lines 4481-4487 Link Here
4481
                    _("03 Color") +
4481
                    _("03 Color") +
4482
                    '</label></td> \
4482
                    '</label></td> \
4483
                               <td> \
4483
                               <td> \
4484
                                <select name="f3" id="f3" size="1"> \
4484
                                <select name="f3" id="f3"> \
4485
                                 [% IF ( f3a ) %] \
4485
                                 [% IF ( f3a ) %] \
4486
                                  <option value="a" selected="selected">' +
4486
                                  <option value="a" selected="selected">' +
4487
                    _("a- One color") +
4487
                    _("a- One color") +
Lines 4562-4568 Link Here
4562
                    _("04 Primary support material") +
4562
                    _("04 Primary support material") +
4563
                    '</label></td> \
4563
                    '</label></td> \
4564
                               <td> \
4564
                               <td> \
4565
                                <select name="f4" id="f4" size="1"> \
4565
                                <select name="f4" id="f4"> \
4566
                     [% IF ( f4a ) %] \
4566
                     [% IF ( f4a ) %] \
4567
                                  <option value="a" selected="selected">' +
4567
                                  <option value="a" selected="selected">' +
4568
                    _("a- Canvas") +
4568
                    _("a- Canvas") +
Lines 4778-4784 Link Here
4778
                    _("05 Secondary support material") +
4778
                    _("05 Secondary support material") +
4779
                    '</label></td> \
4779
                    '</label></td> \
4780
                               <td> \
4780
                               <td> \
4781
                                <select name="f5" id="f5" size="1"> \
4781
                                <select name="f5" id="f5"> \
4782
                     [% IF ( f5exclamation ) %] \
4782
                     [% IF ( f5exclamation ) %] \
4783
                                  <option value=" " selected="selected">' +
4783
                                  <option value=" " selected="selected">' +
4784
                    _("#- No attempt to code") +
4784
                    _("#- No attempt to code") +
Lines 5015-5021 Link Here
5015
                    _("01 Specific material designation") +
5015
                    _("01 Specific material designation") +
5016
                    '</label></td> \
5016
                    '</label></td> \
5017
                               <td> \
5017
                               <td> \
5018
                                <select name="f1" id="f1" size="1"> \
5018
                                <select name="f1" id="f1"> \
5019
                     [% IF ( f1c ) %] \
5019
                     [% IF ( f1c ) %] \
5020
                                  <option value="c" selected="selected">' +
5020
                                  <option value="c" selected="selected">' +
5021
                    _("c- Film cartridge") +
5021
                    _("c- Film cartridge") +
Lines 5087-5093 Link Here
5087
                    _("02 Undefined") +
5087
                    _("02 Undefined") +
5088
                    '</label></td> \
5088
                    '</label></td> \
5089
                               <td> \
5089
                               <td> \
5090
                                <select name="f2" id="f2" size="1"> \
5090
                                <select name="f2" id="f2"> \
5091
                                 [% IF ( f2exclamation ) %] \
5091
                                 [% IF ( f2exclamation ) %] \
5092
                                  <option value=" " selected="selected">' +
5092
                                  <option value=" " selected="selected">' +
5093
                    _("#- Undefined") +
5093
                    _("#- Undefined") +
Lines 5105-5111 Link Here
5105
                    _("03 Color") +
5105
                    _("03 Color") +
5106
                    '</label></td> \
5106
                    '</label></td> \
5107
                               <td> \
5107
                               <td> \
5108
                                <select name="f3" id="f3" size="1"> \
5108
                                <select name="f3" id="f3"> \
5109
                     [% IF ( f3b ) %] \
5109
                     [% IF ( f3b ) %] \
5110
                                  <option value="b" selected="selected">' +
5110
                                  <option value="b" selected="selected">' +
5111
                    _("b- Black-and-white") +
5111
                    _("b- Black-and-white") +
Lines 5186-5192 Link Here
5186
                    _("04 Motion picture presentation format") +
5186
                    _("04 Motion picture presentation format") +
5187
                    '</label></td> \
5187
                    '</label></td> \
5188
                               <td> \
5188
                               <td> \
5189
                                <select name="f4" id="f4" size="1"> \
5189
                                <select name="f4" id="f4"> \
5190
                     [% IF ( f4a ) %] \
5190
                     [% IF ( f4a ) %] \
5191
                                  <option value="a" selected="selected">' +
5191
                                  <option value="a" selected="selected">' +
5192
                    _("a- Standard sound aperture (reduced frame)") +
5192
                    _("a- Standard sound aperture (reduced frame)") +
Lines 5276-5282 Link Here
5276
                    _("05 Sound on medium or separate") +
5276
                    _("05 Sound on medium or separate") +
5277
                    '</label></td> \
5277
                    '</label></td> \
5278
                               <td> \
5278
                               <td> \
5279
                                <select name="f5" id="f5" size="1"> \
5279
                                <select name="f5" id="f5"> \
5280
                                 [% IF ( f5exclamation ) %] \
5280
                                 [% IF ( f5exclamation ) %] \
5281
                                  <option value=" " selected="selected">' +
5281
                                  <option value=" " selected="selected">' +
5282
                    _("#- No sound (silent)") +
5282
                    _("#- No sound (silent)") +
Lines 5330-5336 Link Here
5330
                    _("06 Medium for sound") +
5330
                    _("06 Medium for sound") +
5331
                    '</label></td> \
5331
                    '</label></td> \
5332
                               <td> \
5332
                               <td> \
5333
                                <select name="f6" id="f6" size="1"> \
5333
                                <select name="f6" id="f6"> \
5334
                                 [% IF ( f6exclamation ) %] \
5334
                                 [% IF ( f6exclamation ) %] \
5335
                                  <option value=" " selected="selected">' +
5335
                                  <option value=" " selected="selected">' +
5336
                    _("#- No sound (silent)") +
5336
                    _("#- No sound (silent)") +
Lines 5456-5462 Link Here
5456
                    _("07 Dimensions") +
5456
                    _("07 Dimensions") +
5457
                    '</label></td> \
5457
                    '</label></td> \
5458
                               <td> \
5458
                               <td> \
5459
                                <select name="f7" id="f7" size="1"> \
5459
                                <select name="f7" id="f7"> \
5460
                                 [% IF ( f7a ) %] \
5460
                                 [% IF ( f7a ) %] \
5461
                                  <option value="a" selected="selected">' +
5461
                                  <option value="a" selected="selected">' +
5462
                    _("a- Standard 8mm.") +
5462
                    _("a- Standard 8mm.") +
Lines 5555-5561 Link Here
5555
                    _("08 Configuration of playback channels") +
5555
                    _("08 Configuration of playback channels") +
5556
                    '</label></td> \
5556
                    '</label></td> \
5557
                               <td> \
5557
                               <td> \
5558
                                <select name="f8" id="f8" size="1"> \
5558
                                <select name="f8" id="f8"> \
5559
                     [% IF ( f8k ) %] \
5559
                     [% IF ( f8k ) %] \
5560
                                  <option value="k" selected="selected">' +
5560
                                  <option value="k" selected="selected">' +
5561
                    _("k- Mixed") +
5561
                    _("k- Mixed") +
Lines 5636-5642 Link Here
5636
                    _("09 Production elements") +
5636
                    _("09 Production elements") +
5637
                    '</label></td> \
5637
                    '</label></td> \
5638
                               <td> \
5638
                               <td> \
5639
                                <select name="f9" id="f9" size="1"> \
5639
                                <select name="f9" id="f9"> \
5640
                                 [% IF ( f9a ) %] \
5640
                                 [% IF ( f9a ) %] \
5641
                                  <option value="a" selected="selected">' +
5641
                                  <option value="a" selected="selected">' +
5642
                    _("a- Workprint") +
5642
                    _("a- Workprint") +
Lines 5735-5741 Link Here
5735
                    _("10 Positive/negative aspect") +
5735
                    _("10 Positive/negative aspect") +
5736
                    '</label></td> \
5736
                    '</label></td> \
5737
                               <td> \
5737
                               <td> \
5738
                                <select name="f10" id="f10" size="1"> \
5738
                                <select name="f10" id="f10"> \
5739
                     [% IF ( f10a ) %] \
5739
                     [% IF ( f10a ) %] \
5740
                                  <option value="a" selected="selected">' +
5740
                                  <option value="a" selected="selected">' +
5741
                    _("a- Positive") +
5741
                    _("a- Positive") +
Lines 5798-5804 Link Here
5798
                    _("11 Generation") +
5798
                    _("11 Generation") +
5799
                    '</label></td> \
5799
                    '</label></td> \
5800
                               <td> \
5800
                               <td> \
5801
                                <select name="f11" id="f11" size="1"> \
5801
                                <select name="f11" id="f11"> \
5802
                     [% IF ( f11d ) %] \
5802
                     [% IF ( f11d ) %] \
5803
                                  <option value="d" selected="selected">' +
5803
                                  <option value="d" selected="selected">' +
5804
                    _("d- Duplicate") +
5804
                    _("d- Duplicate") +
Lines 5870-5876 Link Here
5870
                    _("12 Base of film") +
5870
                    _("12 Base of film") +
5871
                    '</label></td> \
5871
                    '</label></td> \
5872
                                <td> \
5872
                                <td> \
5873
                                 <select id="f12" name="f12" size="1"> \
5873
                                 <select id="f12" name="f12"> \
5874
                                 [% IF ( f12a ) %] \
5874
                                 [% IF ( f12a ) %] \
5875
                                  <option value="a" selected="selected">' +
5875
                                  <option value="a" selected="selected">' +
5876
                    _("a- Safety base, undetermined") +
5876
                    _("a- Safety base, undetermined") +
Lines 5987-5993 Link Here
5987
                    _("13 Refined categories of color") +
5987
                    _("13 Refined categories of color") +
5988
                    '</label></td> \
5988
                    '</label></td> \
5989
                                <td> \
5989
                                <td> \
5990
                                 <select id="f13" name="f13" size="1"> \
5990
                                 <select id="f13" name="f13"> \
5991
                                 [% IF ( f13a ) %] \
5991
                                 [% IF ( f13a ) %] \
5992
                                  <option value="a" selected="selected">' +
5992
                                  <option value="a" selected="selected">' +
5993
                    _("a- 3 layer color") +
5993
                    _("a- 3 layer color") +
Lines 6203-6209 Link Here
6203
                    _("14 Kind of color stock or print") +
6203
                    _("14 Kind of color stock or print") +
6204
                    '</label></td> \
6204
                    '</label></td> \
6205
                               <td> \
6205
                               <td> \
6206
                                <select name="f14" id="f14" size="1"> \
6206
                                <select name="f14" id="f14"> \
6207
                     [% IF ( f14a ) %] \
6207
                     [% IF ( f14a ) %] \
6208
                                  <option value="a" selected="selected">' +
6208
                                  <option value="a" selected="selected">' +
6209
                    _("a- Imbibition dye transfer prints") +
6209
                    _("a- Imbibition dye transfer prints") +
Lines 6283-6289 Link Here
6283
                    _("15 Deterioration stage") +
6283
                    _("15 Deterioration stage") +
6284
                    '</label></td> \
6284
                    '</label></td> \
6285
                               <td> \
6285
                               <td> \
6286
                                <select name="f15" id="f15" size="1"> \
6286
                                <select name="f15" id="f15"> \
6287
                     [% IF ( f15a ) %] \
6287
                     [% IF ( f15a ) %] \
6288
                                  <option value="a" selected="selected">' +
6288
                                  <option value="a" selected="selected">' +
6289
                    _("a- None apparent") +
6289
                    _("a- None apparent") +
Lines 6399-6405 Link Here
6399
                    _("16 Completeness") +
6399
                    _("16 Completeness") +
6400
                    '</label></td> \
6400
                    '</label></td> \
6401
                               <td> \
6401
                               <td> \
6402
                                <select name="f16" id="f16" size="1"> \
6402
                                <select name="f16" id="f16"> \
6403
                     [% IF ( f16c ) %] \
6403
                     [% IF ( f16c ) %] \
6404
                                  <option value="c" selected="selected">' +
6404
                                  <option value="c" selected="selected">' +
6405
                    _("c- Complete") +
6405
                    _("c- Complete") +
Lines 6476-6482 Link Here
6476
                    _("01 Specific material designation") +
6476
                    _("01 Specific material designation") +
6477
                    '</label></td> \
6477
                    '</label></td> \
6478
                               <td> \
6478
                               <td> \
6479
                                <select id="f1" name="f1" size="1"> \
6479
                                <select id="f1" name="f1"> \
6480
                     [% IF ( f1u ) %] \
6480
                     [% IF ( f1u ) %] \
6481
                                  <option value="u" selected="selected">' +
6481
                                  <option value="u" selected="selected">' +
6482
                    _("u- Unspecified") +
6482
                    _("u- Unspecified") +
Lines 6515-6521 Link Here
6515
                    _("01 Specific material designation") +
6515
                    _("01 Specific material designation") +
6516
                    '</label></td> \
6516
                    '</label></td> \
6517
                               <td> \
6517
                               <td> \
6518
                                <select id="f1" name="f1" size="1"> \
6518
                                <select id="f1" name="f1"> \
6519
                     [% IF ( f1u ) %] \
6519
                     [% IF ( f1u ) %] \
6520
                                  <option value="u" selected="selected">' +
6520
                                  <option value="u" selected="selected">' +
6521
                    _("u- Unspecified") +
6521
                    _("u- Unspecified") +
Lines 6554-6560 Link Here
6554
                    _("01 Specific material designation") +
6554
                    _("01 Specific material designation") +
6555
                    '</label></td> \
6555
                    '</label></td> \
6556
                               <td> \
6556
                               <td> \
6557
                                <select name="f1" id="f1" size="1"> \
6557
                                <select name="f1" id="f1"> \
6558
                     [% IF ( f1u ) %] \
6558
                     [% IF ( f1u ) %] \
6559
                                  <option value="u" selected="selected">' +
6559
                                  <option value="u" selected="selected">' +
6560
                    _("u- Unspecified") +
6560
                    _("u- Unspecified") +
Lines 6581-6587 Link Here
6581
                    _("02 Undefined") +
6581
                    _("02 Undefined") +
6582
                    '</label></td> \
6582
                    '</label></td> \
6583
                               <td> \
6583
                               <td> \
6584
                                <select name="f2" id="f2" size="1"> \
6584
                                <select name="f2" id="f2"> \
6585
                                 [% IF ( f2exclamation ) %] \
6585
                                 [% IF ( f2exclamation ) %] \
6586
                                  <option value=" " selected="selected">' +
6586
                                  <option value=" " selected="selected">' +
6587
                    _("#- Undefined") +
6587
                    _("#- Undefined") +
Lines 6599-6605 Link Here
6599
                    _("03 Altitude of sensor") +
6599
                    _("03 Altitude of sensor") +
6600
                    '</label></td> \
6600
                    '</label></td> \
6601
                               <td> \
6601
                               <td> \
6602
                                <select name="f3" id="f3" size="1"> \
6602
                                <select name="f3" id="f3"> \
6603
                                 [% IF ( f3a ) %] \
6603
                                 [% IF ( f3a ) %] \
6604
                                  <option value="a" selected="selected">' +
6604
                                  <option value="a" selected="selected">' +
6605
                    _("a- Surface") +
6605
                    _("a- Surface") +
Lines 6671-6677 Link Here
6671
                    _("04 Attitude of sensor") +
6671
                    _("04 Attitude of sensor") +
6672
                    '</label></td> \
6672
                    '</label></td> \
6673
                               <td> \
6673
                               <td> \
6674
                                <select name="f4" id="f4" size="1"> \
6674
                                <select name="f4" id="f4"> \
6675
                     [% IF ( f4a ) %] \
6675
                     [% IF ( f4a ) %] \
6676
                                  <option value="a" selected="selected">' +
6676
                                  <option value="a" selected="selected">' +
6677
                    _("a- Low oblique") +
6677
                    _("a- Low oblique") +
Lines 6734-6740 Link Here
6734
                    _("05 Cloud cover") +
6734
                    _("05 Cloud cover") +
6735
                    '</label></td> \
6735
                    '</label></td> \
6736
                               <td> \
6736
                               <td> \
6737
                                <select name="f5" id="f5" size="1"> \
6737
                                <select name="f5" id="f5"> \
6738
                     [% IF ( f5a ) %] \
6738
                     [% IF ( f5a ) %] \
6739
                                  <option value="0" selected="selected">' +
6739
                                  <option value="0" selected="selected">' +
6740
                    _("0- 0-9%") +
6740
                    _("0- 0-9%") +
Lines 6860-6866 Link Here
6860
                    _("06 Platform construction type") +
6860
                    _("06 Platform construction type") +
6861
                    '</label></td> \
6861
                    '</label></td> \
6862
                               <td> \
6862
                               <td> \
6863
                                <select name="f6" id="f6" size="1"> \
6863
                                <select name="f6" id="f6"> \
6864
                                 [% IF ( f6a ) %] \
6864
                                 [% IF ( f6a ) %] \
6865
                                  <option value="a" selected="selected">' +
6865
                                  <option value="a" selected="selected">' +
6866
                    _("a- Balloon") +
6866
                    _("a- Balloon") +
Lines 6986-6992 Link Here
6986
                    _("07 Platform use category") +
6986
                    _("07 Platform use category") +
6987
                    '</label></td> \
6987
                    '</label></td> \
6988
                               <td> \
6988
                               <td> \
6989
                                <select name="f7" id="f7" size="1"> \
6989
                                <select name="f7" id="f7"> \
6990
                                 [% IF ( f7a ) %] \
6990
                                 [% IF ( f7a ) %] \
6991
                                  <option value="a" selected="selected">' +
6991
                                  <option value="a" selected="selected">' +
6992
                    _("a- Meteorological") +
6992
                    _("a- Meteorological") +
Lines 7067-7073 Link Here
7067
                    _("08 Sensor type") +
7067
                    _("08 Sensor type") +
7068
                    '</label></td> \
7068
                    '</label></td> \
7069
                               <td> \
7069
                               <td> \
7070
                                <select name="f8" id="f8" size="1"> \
7070
                                <select name="f8" id="f8"> \
7071
                     [% IF ( f8a ) %] \
7071
                     [% IF ( f8a ) %] \
7072
                                  <option value="a" selected="selected">' +
7072
                                  <option value="a" selected="selected">' +
7073
                    _("a- Active") +
7073
                    _("a- Active") +
Lines 7121-7127 Link Here
7121
                    _("09-10 Data type") +
7121
                    _("09-10 Data type") +
7122
                    '</label></td> \
7122
                    '</label></td> \
7123
                               <td> \
7123
                               <td> \
7124
                                <select name="f9" id="f9" size="1"> \
7124
                                <select name="f9" id="f9"> \
7125
                     [% IF ( f9a ) %] \
7125
                     [% IF ( f9a ) %] \
7126
                                  <option value="aa" selected="selected">' +
7126
                                  <option value="aa" selected="selected">' +
7127
                    _("aa- Visible light") +
7127
                    _("aa- Visible light") +
Lines 7520-7526 Link Here
7520
                    _("01 Specific material designation") +
7520
                    _("01 Specific material designation") +
7521
                    '</label></td> \
7521
                    '</label></td> \
7522
                               <td> \
7522
                               <td> \
7523
                                <select name="f1" id="f1" size="1"> \
7523
                                <select name="f1" id="f1"> \
7524
                                 [% IF ( f1d ) %] \
7524
                                 [% IF ( f1d ) %] \
7525
                                  <option value="d" selected="selected">' +
7525
                                  <option value="d" selected="selected">' +
7526
                    _("d- Sound disc") +
7526
                    _("d- Sound disc") +
Lines 7637-7643 Link Here
7637
                    _("02 Undefined") +
7637
                    _("02 Undefined") +
7638
                    '</label></td> \
7638
                    '</label></td> \
7639
                               <td> \
7639
                               <td> \
7640
                                <select name="f2" id="f2" size="1"> \
7640
                                <select name="f2" id="f2"> \
7641
                                 [% IF ( f2exclamation ) %] \
7641
                                 [% IF ( f2exclamation ) %] \
7642
                                  <option value=" " selected="selected">' +
7642
                                  <option value=" " selected="selected">' +
7643
                    _("#- Undefined") +
7643
                    _("#- Undefined") +
Lines 7655-7661 Link Here
7655
                    _("03 Speed") +
7655
                    _("03 Speed") +
7656
                    '</label></td> \
7656
                    '</label></td> \
7657
                               <td> \
7657
                               <td> \
7658
                                <select name="f3" id="f3" size="1"> \
7658
                                <select name="f3" id="f3"> \
7659
                                 [% IF ( f3a ) %] \
7659
                                 [% IF ( f3a ) %] \
7660
                                  <option value="a" selected="selected">' +
7660
                                  <option value="a" selected="selected">' +
7661
                    _("a- 16 rpm (discs)") +
7661
                    _("a- 16 rpm (discs)") +
Lines 7826-7832 Link Here
7826
                    _("04 Configuration of playback channels") +
7826
                    _("04 Configuration of playback channels") +
7827
                    '</label></td> \
7827
                    '</label></td> \
7828
                               <td> \
7828
                               <td> \
7829
                                <select name="f4" id="f4" size="1"> \
7829
                                <select name="f4" id="f4"> \
7830
                                 [% IF ( f4m ) %] \
7830
                                 [% IF ( f4m ) %] \
7831
                                  <option value="m" selected="selected">' +
7831
                                  <option value="m" selected="selected">' +
7832
                    _("m- Monaural") +
7832
                    _("m- Monaural") +
Lines 7889-7895 Link Here
7889
                    _("05 Groove width/groove pitch") +
7889
                    _("05 Groove width/groove pitch") +
7890
                    '</label></td> \
7890
                    '</label></td> \
7891
                               <td> \
7891
                               <td> \
7892
                                <select name="f5" id="f5" size="1"> \
7892
                                <select name="f5" id="f5"> \
7893
                                 [% IF ( f5m ) %] \
7893
                                 [% IF ( f5m ) %] \
7894
                                  <option value="m" selected="selected">' +
7894
                                  <option value="m" selected="selected">' +
7895
                    _("m- Microgroove/fine") +
7895
                    _("m- Microgroove/fine") +
Lines 7952-7958 Link Here
7952
                    _("06 Dimensions") +
7952
                    _("06 Dimensions") +
7953
                    '</label></td> \
7953
                    '</label></td> \
7954
                               <td> \
7954
                               <td> \
7955
                                <select name="f6" id="f6" size="1"> \
7955
                                <select name="f6" id="f6"> \
7956
                                 [% IF ( f6a ) %] \
7956
                                 [% IF ( f6a ) %] \
7957
                                  <option value="a" selected="selected">' +
7957
                                  <option value="a" selected="selected">' +
7958
                    _("a- 3 in. diameter") +
7958
                    _("a- 3 in. diameter") +
Lines 8087-8093 Link Here
8087
                    _("07 Tape width") +
8087
                    _("07 Tape width") +
8088
                    '</label></td> \
8088
                    '</label></td> \
8089
                               <td> \
8089
                               <td> \
8090
                                <select name="f7" id="f7" size="1"> \
8090
                                <select name="f7" id="f7"> \
8091
                                 [% IF ( f7l ) %] \
8091
                                 [% IF ( f7l ) %] \
8092
                                  <option value="l" selected="selected">' +
8092
                                  <option value="l" selected="selected">' +
8093
                    _("l- 1/8 in.") +
8093
                    _("l- 1/8 in.") +
Lines 8168-8174 Link Here
8168
                    _("08 Tape Configuration") +
8168
                    _("08 Tape Configuration") +
8169
                    '</label></td> \
8169
                    '</label></td> \
8170
                               <td> \
8170
                               <td> \
8171
                                <select name="f8" id="f8" size="1"> \
8171
                                <select name="f8" id="f8"> \
8172
                                 [% IF ( f8a ) %] \
8172
                                 [% IF ( f8a ) %] \
8173
                                  <option value="a" selected="selected">' +
8173
                                  <option value="a" selected="selected">' +
8174
                    _("a- Full (1) track") +
8174
                    _("a- Full (1) track") +
Lines 8267-8273 Link Here
8267
                    _("09 Kind of disc, cylinder or tape") +
8267
                    _("09 Kind of disc, cylinder or tape") +
8268
                    '</label></td> \
8268
                    '</label></td> \
8269
                               <td> \
8269
                               <td> \
8270
                                <select name="f9" id="f9" size="1"> \
8270
                                <select name="f9" id="f9"> \
8271
                                 [% IF ( f9a ) %] \
8271
                                 [% IF ( f9a ) %] \
8272
                                  <option value="a" selected="selected">' +
8272
                                  <option value="a" selected="selected">' +
8273
                    _("a- Master tape") +
8273
                    _("a- Master tape") +
Lines 8384-8390 Link Here
8384
                    _("10 Kind of material") +
8384
                    _("10 Kind of material") +
8385
                    '</label></td> \
8385
                    '</label></td> \
8386
                               <td> \
8386
                               <td> \
8387
                                <select name="f10" id="f10" size="1"> \
8387
                                <select name="f10" id="f10"> \
8388
                                 [% IF ( f10a ) %] \
8388
                                 [% IF ( f10a ) %] \
8389
                                  <option value="a" selected="selected">' +
8389
                                  <option value="a" selected="selected">' +
8390
                    _("a- Lacquer coating") +
8390
                    _("a- Lacquer coating") +
Lines 8528-8534 Link Here
8528
                    _("11 Kind of cutting") +
8528
                    _("11 Kind of cutting") +
8529
                    '</label></td> \
8529
                    '</label></td> \
8530
                               <td> \
8530
                               <td> \
8531
                                <select name="f11" id="f11" size="1"> \
8531
                                <select name="f11" id="f11"> \
8532
                                 [% IF ( f11h ) %] \
8532
                                 [% IF ( f11h ) %] \
8533
                                  <option value="h" selected="selected">' +
8533
                                  <option value="h" selected="selected">' +
8534
                    _("h- Hill-and-dale cutting") +
8534
                    _("h- Hill-and-dale cutting") +
Lines 8582-8588 Link Here
8582
                    _("12 Special playback characteristics") +
8582
                    _("12 Special playback characteristics") +
8583
                    '</label></td> \
8583
                    '</label></td> \
8584
                               <td> \
8584
                               <td> \
8585
                                <select name="f12" id="f12" size="1"> \
8585
                                <select name="f12" id="f12"> \
8586
                                 [% IF ( f12a ) %] \
8586
                                 [% IF ( f12a ) %] \
8587
                                  <option value="a" selected="selected">' +
8587
                                  <option value="a" selected="selected">' +
8588
                    _("a- NAB standard") +
8588
                    _("a- NAB standard") +
Lines 8699-8705 Link Here
8699
                    _("13 Capture and storage technique") +
8699
                    _("13 Capture and storage technique") +
8700
                    '</label></td> \
8700
                    '</label></td> \
8701
                               <td> \
8701
                               <td> \
8702
                                <select name="f13" id="f13" size="1"> \
8702
                                <select name="f13" id="f13"> \
8703
                                 [% IF ( f13a ) %] \
8703
                                 [% IF ( f13a ) %] \
8704
                                  <option value="a" selected="selected">' +
8704
                                  <option value="a" selected="selected">' +
8705
                    _("a- Acoustical capture, direct storage") +
8705
                    _("a- Acoustical capture, direct storage") +
Lines 8783-8789 Link Here
8783
                    _("01 Specific material designation") +
8783
                    _("01 Specific material designation") +
8784
                    '</label></td> \
8784
                    '</label></td> \
8785
                               <td> \
8785
                               <td> \
8786
                                <select id="f1" name="f1" size="1"> \
8786
                                <select id="f1" name="f1"> \
8787
                                 [% IF ( f1a ) %] \
8787
                                 [% IF ( f1a ) %] \
8788
                                  <option value="a" selected="selected">' +
8788
                                  <option value="a" selected="selected">' +
8789
                    _("a- Regular print") +
8789
                    _("a- Regular print") +
Lines 8867-8873 Link Here
8867
                    _("01 Specific material designation") +
8867
                    _("01 Specific material designation") +
8868
                    '</label></td> \
8868
                    '</label></td> \
8869
                               <td> \
8869
                               <td> \
8870
                                <select name="f1" id="f1" size="1"> \
8870
                                <select name="f1" id="f1"> \
8871
                     [% IF ( f1c ) %] \
8871
                     [% IF ( f1c ) %] \
8872
                                  <option value="c" selected="selected">' +
8872
                                  <option value="c" selected="selected">' +
8873
                    _("c- Videocartridge") +
8873
                    _("c- Videocartridge") +
Lines 8939-8945 Link Here
8939
                    _("02 Undefined") +
8939
                    _("02 Undefined") +
8940
                    '</label></td> \
8940
                    '</label></td> \
8941
                               <td> \
8941
                               <td> \
8942
                                <select name="f2" id="f2" size="1"> \
8942
                                <select name="f2" id="f2"> \
8943
                                 [% IF ( f2exclamation ) %] \
8943
                                 [% IF ( f2exclamation ) %] \
8944
                                  <option value=" " selected="selected">' +
8944
                                  <option value=" " selected="selected">' +
8945
                    _("#- Undefined") +
8945
                    _("#- Undefined") +
Lines 8957-8963 Link Here
8957
                    _("03 Color") +
8957
                    _("03 Color") +
8958
                    '</label></td> \
8958
                    '</label></td> \
8959
                               <td> \
8959
                               <td> \
8960
                                <select name="f3" id="f3" size="1"> \
8960
                                <select name="f3" id="f3"> \
8961
                                 [% IF ( f3a ) %] \
8961
                                 [% IF ( f3a ) %] \
8962
                                  <option value="a" selected="selected">' +
8962
                                  <option value="a" selected="selected">' +
8963
                    _("a- One color") +
8963
                    _("a- One color") +
Lines 9038-9044 Link Here
9038
                    _("04 Videorecording format") +
9038
                    _("04 Videorecording format") +
9039
                    '</label></td> \
9039
                    '</label></td> \
9040
                               <td> \
9040
                               <td> \
9041
                                <select name="f4" id="f4" size="1"> \
9041
                                <select name="f4" id="f4"> \
9042
                     [% IF ( f4a ) %] \
9042
                     [% IF ( f4a ) %] \
9043
                                  <option value="a" selected="selected">' +
9043
                                  <option value="a" selected="selected">' +
9044
                    _("a- Beta (1/2 in., videocassette)") +
9044
                    _("a- Beta (1/2 in., videocassette)") +
Lines 9227-9233 Link Here
9227
                    _("05 Sound on medium or separate") +
9227
                    _("05 Sound on medium or separate") +
9228
                    '</label></td> \
9228
                    '</label></td> \
9229
                               <td> \
9229
                               <td> \
9230
                                <select name="f5" id="f5" size="1"> \
9230
                                <select name="f5" id="f5"> \
9231
                                 [% IF ( f5exclamation ) %] \
9231
                                 [% IF ( f5exclamation ) %] \
9232
                                  <option value=" " selected="selected">' +
9232
                                  <option value=" " selected="selected">' +
9233
                    _("#- No sound (silent)") +
9233
                    _("#- No sound (silent)") +
Lines 9281-9287 Link Here
9281
                    _("06 Medium for sound") +
9281
                    _("06 Medium for sound") +
9282
                    '</label></td> \
9282
                    '</label></td> \
9283
                               <td> \
9283
                               <td> \
9284
                                <select name="f6" id="f6" size="1"> \
9284
                                <select name="f6" id="f6"> \
9285
                                 [% IF ( f6exclamation ) %] \
9285
                                 [% IF ( f6exclamation ) %] \
9286
                                  <option value=" " selected="selected">' +
9286
                                  <option value=" " selected="selected">' +
9287
                    _("#- No sound (silent)") +
9287
                    _("#- No sound (silent)") +
Lines 9407-9413 Link Here
9407
                    _("07 Dimensions") +
9407
                    _("07 Dimensions") +
9408
                    '</label></td> \
9408
                    '</label></td> \
9409
                               <td> \
9409
                               <td> \
9410
                                <select name="f7" id="f7" size="1"> \
9410
                                <select name="f7" id="f7"> \
9411
                                 [% IF ( f7a ) %] \
9411
                                 [% IF ( f7a ) %] \
9412
                                  <option value="a" selected="selected">' +
9412
                                  <option value="a" selected="selected">' +
9413
                    _("a- 8 mm.") +
9413
                    _("a- 8 mm.") +
Lines 9497-9503 Link Here
9497
                    _("08 Configuration of playback channels") +
9497
                    _("08 Configuration of playback channels") +
9498
                    '</label></td> \
9498
                    '</label></td> \
9499
                               <td> \
9499
                               <td> \
9500
                                <select name="f8" id="f8" size="1"> \
9500
                                <select name="f8" id="f8"> \
9501
                                 [% IF ( f8k ) %] \
9501
                                 [% IF ( f8k ) %] \
9502
                                  <option value="k" selected="selected">' +
9502
                                  <option value="k" selected="selected">' +
9503
                    _("k- Mixed") +
9503
                    _("k- Mixed") +
Lines 9590-9596 Link Here
9590
                    _("01 Specific material designation") +
9590
                    _("01 Specific material designation") +
9591
                    '</label></td> \
9591
                    '</label></td> \
9592
                               <td> \
9592
                               <td> \
9593
                                <select id="f1" name="f1" size="1"> \
9593
                                <select id="f1" name="f1"> \
9594
                                 [% IF ( f1m ) %] \
9594
                                 [% IF ( f1m ) %] \
9595
                                  <option value="m" selected="selected">' +
9595
                                  <option value="m" selected="selected">' +
9596
                    _("m- Multiple physical forms") +
9596
                    _("m- Multiple physical forms") +
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_008_authorities.tt (-19 / +19 lines)
Lines 17-23 Link Here
17
	<tr>
17
	<tr>
18
		<td><label for="f6">06- Direct or indirect geographic subdivision</label></td>
18
		<td><label for="f6">06- Direct or indirect geographic subdivision</label></td>
19
		<td>
19
		<td>
20
			<select name="f6" id="f6" size="1">
20
            <select name="f6" id="f6">
21
            [% IF ( f6 ) %]
21
            [% IF ( f6 ) %]
22
                <option value=" " selected="selected">#- Not subdivided geographically</option>
22
                <option value=" " selected="selected">#- Not subdivided geographically</option>
23
            [% ELSE %]
23
            [% ELSE %]
Lines 50-56 Link Here
50
    <tr>
50
    <tr>
51
        <td><label for="f7">07- Romanization scheme</label></td>
51
        <td><label for="f7">07- Romanization scheme</label></td>
52
        <td>
52
        <td>
53
            <select name="f7" id="f7" size="1">
53
            <select name="f7" id="f7">
54
            [% IF ( f7a ) %]
54
            [% IF ( f7a ) %]
55
                <option value="a" selected="selected">a- International standard</option>
55
                <option value="a" selected="selected">a- International standard</option>
56
            [% ELSE %]
56
            [% ELSE %]
Lines 102-108 Link Here
102
    <tr>
102
    <tr>
103
        <td><label for="f8">08- Language of catalog</label></td>
103
        <td><label for="f8">08- Language of catalog</label></td>
104
        <td>
104
        <td>
105
            <select name="f8" id="f8" size="1">
105
            <select name="f8" id="f8">
106
            [% IF ( f8 ) %]
106
            [% IF ( f8 ) %]
107
                <option value=" " selected="selected">#- No information provided</option>
107
                <option value=" " selected="selected">#- No information provided</option>
108
            [% ELSE %]
108
            [% ELSE %]
Lines 134-140 Link Here
134
    <tr>
134
    <tr>
135
        <td><label for="f9">09- Kind of record</label></td>
135
        <td><label for="f9">09- Kind of record</label></td>
136
        <td>
136
        <td>
137
            <select name="f9" id="f9" size="1">
137
            <select name="f9" id="f9">
138
            [% IF ( f9a ) %]
138
            [% IF ( f9a ) %]
139
                <option value="a" selected="selected">a- Established heading</option>
139
                <option value="a" selected="selected">a- Established heading</option>
140
            [% ELSE %]
140
            [% ELSE %]
Lines 176-182 Link Here
176
    <tr>
176
    <tr>
177
        <td><label for="f10">10- Descriptive cataloging rules</label></td>
177
        <td><label for="f10">10- Descriptive cataloging rules</label></td>
178
        <td>
178
        <td>
179
            <select name="f10" id="f10" size="1">
179
            <select name="f10" id="f10">
180
            [% IF ( f10a ) %]
180
            [% IF ( f10a ) %]
181
                <option value="a" selected="selected">a- Earlier rules</option>
181
                <option value="a" selected="selected">a- Earlier rules</option>
182
            [% ELSE %]
182
            [% ELSE %]
Lines 218-224 Link Here
218
    <tr>
218
    <tr>
219
        <td><label for="f11">11- Subject heading system/thesaurus</label></td>
219
        <td><label for="f11">11- Subject heading system/thesaurus</label></td>
220
        <td>
220
        <td>
221
            <select name="f11" id="f11" size="1">
221
            <select name="f11" id="f11">
222
            [% IF ( f11a ) %]
222
            [% IF ( f11a ) %]
223
                <option value="a" selected="selected">a- Library of Congress subject headings</option>
223
                <option value="a" selected="selected">a- Library of Congress subject headings</option>
224
            [% ELSE %]
224
            [% ELSE %]
Lines 280-286 Link Here
280
    <tr>
280
    <tr>
281
        <td><label for="f12">12- Type of series</label></td>
281
        <td><label for="f12">12- Type of series</label></td>
282
        <td>
282
        <td>
283
            <select name="f12" id="f12" size="1">
283
            <select name="f12" id="f12">
284
            [% IF ( f12a ) %]
284
            [% IF ( f12a ) %]
285
                <option value="a" selected="selected">a- Monographic series</option>
285
                <option value="a" selected="selected">a- Monographic series</option>
286
            [% ELSE %]
286
            [% ELSE %]
Lines 317-323 Link Here
317
    <tr>
317
    <tr>
318
        <td><label for="f13">13- Numbered or unnumbered series</label></td>
318
        <td><label for="f13">13- Numbered or unnumbered series</label></td>
319
        <td>
319
        <td>
320
            <select name="f13" id="f13" size="1">
320
            <select name="f13" id="f13">
321
            [% IF ( f13a ) %]
321
            [% IF ( f13a ) %]
322
                <option value="a" selected="selected">a- Numbered</option>
322
                <option value="a" selected="selected">a- Numbered</option>
323
            [% ELSE %]
323
            [% ELSE %]
Lines 349-355 Link Here
349
    <tr>
349
    <tr>
350
        <td><label for="f14">14- Heading use--main or added entry</label></td>
350
        <td><label for="f14">14- Heading use--main or added entry</label></td>
351
        <td>
351
        <td>
352
            <select name="f14" id="f14" size="1">
352
            <select name="f14" id="f14">
353
            [% IF ( f14a ) %]
353
            [% IF ( f14a ) %]
354
                <option value="a" selected="selected">a- Appropriate</option>
354
                <option value="a" selected="selected">a- Appropriate</option>
355
            [% ELSE %]
355
            [% ELSE %]
Lines 371-377 Link Here
371
    <tr>
371
    <tr>
372
        <td><label for="f15">15- Heading use--subject added entry</label></td>
372
        <td><label for="f15">15- Heading use--subject added entry</label></td>
373
        <td>
373
        <td>
374
            <select name="f15" id="f15" size="1">
374
            <select name="f15" id="f15">
375
            [% IF ( f15a ) %]
375
            [% IF ( f15a ) %]
376
                <option value="a" selected="selected">a- Appropriate</option>
376
                <option value="a" selected="selected">a- Appropriate</option>
377
            [% ELSE %]
377
            [% ELSE %]
Lines 393-399 Link Here
393
    <tr>
393
    <tr>
394
        <td><label for="f16">16- Heading use--series added entry</label></td>
394
        <td><label for="f16">16- Heading use--series added entry</label></td>
395
        <td>
395
        <td>
396
            <select name="f16" id="f16" size="1">
396
            <select name="f16" id="f16">
397
            [% IF ( f16a ) %]
397
            [% IF ( f16a ) %]
398
                <option value="a" selected="selected">a- Appropriate</option>
398
                <option value="a" selected="selected">a- Appropriate</option>
399
            [% ELSE %]
399
            [% ELSE %]
Lines 415-421 Link Here
415
    <tr>
415
    <tr>
416
        <td><label for="f17">17- Type of subject subdivision</label></td>
416
        <td><label for="f17">17- Type of subject subdivision</label></td>
417
        <td>
417
        <td>
418
            <select name="f17" id="f17" size="1">
418
            <select name="f17" id="f17">
419
            [% IF ( f17a ) %]
419
            [% IF ( f17a ) %]
420
                <option value="a" selected="selected">a- Topical</option>
420
                <option value="a" selected="selected">a- Topical</option>
421
            [% ELSE %]
421
            [% ELSE %]
Lines 463-469 Link Here
463
    <tr>
463
    <tr>
464
        <td><label for="f28">28- Type of government agency</label></td>
464
        <td><label for="f28">28- Type of government agency</label></td>
465
        <td>
465
        <td>
466
            <select name="f28" id="f28" size="1">
466
            <select name="f28" id="f28">
467
            [% IF ( f28 ) %]
467
            [% IF ( f28 ) %]
468
                <option value=" " selected="selected">#- Not a government agency</option>
468
                <option value=" " selected="selected">#- Not a government agency</option>
469
            [% ELSE %]
469
            [% ELSE %]
Lines 530-536 Link Here
530
    <tr>
530
    <tr>
531
        <td><label for="f29">29- Reference evaluation</label></td>
531
        <td><label for="f29">29- Reference evaluation</label></td>
532
        <td>
532
        <td>
533
            <select name="f29" id="f29" size="1">
533
            <select name="f29" id="f29">
534
            [% IF ( f29a ) %]
534
            [% IF ( f29a ) %]
535
                <option value="a" selected="selected">a- Tracings are consistent with the heading</option>
535
                <option value="a" selected="selected">a- Tracings are consistent with the heading</option>
536
            [% ELSE %]
536
            [% ELSE %]
Lines 563-569 Link Here
563
    <tr>
563
    <tr>
564
        <td><label for="f31">31- Record update in process</label></td>
564
        <td><label for="f31">31- Record update in process</label></td>
565
        <td>
565
        <td>
566
            <select name="f31" id="f31" size="1">
566
            <select name="f31" id="f31">
567
            [% IF ( f31a ) %]
567
            [% IF ( f31a ) %]
568
                <option value="a" selected="selected">a- Record can be used</option>
568
                <option value="a" selected="selected">a- Record can be used</option>
569
            [% ELSE %]
569
            [% ELSE %]
Lines 585-591 Link Here
585
    <tr>
585
    <tr>
586
        <td><label for="f32">32- Undifferentiated personal name</label></td>
586
        <td><label for="f32">32- Undifferentiated personal name</label></td>
587
        <td>
587
        <td>
588
            <select name="f32" id="f32" size="1">
588
            <select name="f32" id="f32">
589
            [% IF ( f32a ) %]
589
            [% IF ( f32a ) %]
590
                <option value="a" selected="selected">a- Differentiated personal name</option>
590
                <option value="a" selected="selected">a- Differentiated personal name</option>
591
            [% ELSE %]
591
            [% ELSE %]
Lines 612-618 Link Here
612
    <tr>
612
    <tr>
613
        <td><label for="f33">33- Level of establishment</label></td>
613
        <td><label for="f33">33- Level of establishment</label></td>
614
        <td>
614
        <td>
615
            <select name="f33" id="f33" size="1">
615
            <select name="f33" id="f33">
616
            [% IF ( f33a ) %]
616
            [% IF ( f33a ) %]
617
                <option value="a" selected="selected">a- Fully established</option>
617
                <option value="a" selected="selected">a- Fully established</option>
618
            [% ELSE %]
618
            [% ELSE %]
Lines 655-661 Link Here
655
    <tr>
655
    <tr>
656
        <td><label for="f38">38- Modified record</label></td>
656
        <td><label for="f38">38- Modified record</label></td>
657
        <td>
657
        <td>
658
            <select name="f38" id="f38" size="1">
658
            <select name="f38" id="f38">
659
            [% IF ( f38 ) %]
659
            [% IF ( f38 ) %]
660
                <option value=" " selected="selected">#- Not modified</option>
660
                <option value=" " selected="selected">#- Not modified</option>
661
            [% ELSE %]
661
            [% ELSE %]
Lines 682-688 Link Here
682
    <tr>
682
    <tr>
683
        <td><label for="f39">39- Cataloging source</label></td>
683
        <td><label for="f39">39- Cataloging source</label></td>
684
        <td>
684
        <td>
685
            <select name="f39" id="f39" size="1">
685
            <select name="f39" id="f39">
686
            [% IF ( f39 ) %]
686
            [% IF ( f39 ) %]
687
                <option value=" " selected="selected">#- National bibliographic agency</option>
687
                <option value=" " selected="selected">#- National bibliographic agency</option>
688
            [% ELSE %]
688
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_field_008_classifications.tt (-8 / +8 lines)
Lines 17-23 Link Here
17
    <tr>
17
    <tr>
18
        <td><label for="f6">06- Kind of record</label></td>
18
        <td><label for="f6">06- Kind of record</label></td>
19
        <td>
19
        <td>
20
            <select name="f6" id="f6" size="1">
20
            <select name="f6" id="f6">
21
            [% IF ( f6a ) %]
21
            [% IF ( f6a ) %]
22
                <option value="a" selected="selected">a- Schedule record</option>
22
                <option value="a" selected="selected">a- Schedule record</option>
23
            [% ELSE %]
23
            [% ELSE %]
Lines 39-45 Link Here
39
    <tr>
39
    <tr>
40
        <td><label for="f7">07- Type of number</label></td>
40
        <td><label for="f7">07- Type of number</label></td>
41
        <td>
41
        <td>
42
            <select name="f7" id="f7" size="1">
42
            <select name="f7" id="f7">
43
            [% IF ( f7a ) %]
43
            [% IF ( f7a ) %]
44
                <option value="a" selected="selected">a- Single number</option>
44
                <option value="a" selected="selected">a- Single number</option>
45
            [% ELSE %]
45
            [% ELSE %]
Lines 66-72 Link Here
66
    <tr>
66
    <tr>
67
        <td><label for="f8">08- Classification validity</label></td>
67
        <td><label for="f8">08- Classification validity</label></td>
68
        <td>
68
        <td>
69
            <select name="f8" id="f8" size="1">
69
            <select name="f8" id="f8">
70
            [% IF ( f8a ) %]
70
            [% IF ( f8a ) %]
71
                <option value="a" selected="selected">a- Valid</option>
71
                <option value="a" selected="selected">a- Valid</option>
72
            [% ELSE %]
72
            [% ELSE %]
Lines 103-109 Link Here
103
    <tr>
103
    <tr>
104
        <td><label for="f9">09- Standard or optional designation</label></td>
104
        <td><label for="f9">09- Standard or optional designation</label></td>
105
        <td>
105
        <td>
106
            <select name="f9" id="f9" size="1">
106
            <select name="f9" id="f9">
107
            [% IF ( f9a ) %]
107
            [% IF ( f9a ) %]
108
                <option value="a" selected="selected">a- Standard</option>
108
                <option value="a" selected="selected">a- Standard</option>
109
            [% ELSE %]
109
            [% ELSE %]
Lines 125-131 Link Here
125
    <tr>
125
    <tr>
126
        <td><label for="f10">10- Record update in process</label></td>
126
        <td><label for="f10">10- Record update in process</label></td>
127
        <td>
127
        <td>
128
            <select name="f10" id="f10" size="1">
128
            <select name="f10" id="f10">
129
            [% IF ( f10a ) %]
129
            [% IF ( f10a ) %]
130
                <option value="a" selected="selected">a- Record can be used</option>
130
                <option value="a" selected="selected">a- Record can be used</option>
131
            [% ELSE %]
131
            [% ELSE %]
Lines 142-148 Link Here
142
    <tr>
142
    <tr>
143
        <td><label for="f11">11- Level of establishment</label></td>
143
        <td><label for="f11">11- Level of establishment</label></td>
144
        <td>
144
        <td>
145
            <select name="f11" id="f11" size="1">
145
            <select name="f11" id="f11">
146
            [% IF ( f11a ) %]
146
            [% IF ( f11a ) %]
147
                <option value="a" selected="selected">a- Fully established</option>
147
                <option value="a" selected="selected">a- Fully established</option>
148
            [% ELSE %]
148
            [% ELSE %]
Lines 159-165 Link Here
159
    <tr>
159
    <tr>
160
        <td><label for="f12">12- Synthesized number indication</label></td>
160
        <td><label for="f12">12- Synthesized number indication</label></td>
161
        <td>
161
        <td>
162
            <select name="f12" id="f12" size="1">
162
            <select name="f12" id="f12">
163
            [% IF ( f12a ) %]
163
            [% IF ( f12a ) %]
164
                <option value="a" selected="selected">a- Not synthesized</option>
164
                <option value="a" selected="selected">a- Not synthesized</option>
165
            [% ELSE %]
165
            [% ELSE %]
Lines 181-187 Link Here
181
    <tr>
181
    <tr>
182
        <td><label for="f13">13- Display controller</label></td>
182
        <td><label for="f13">13- Display controller</label></td>
183
        <td>
183
        <td>
184
            <select name="f13" id="f13" size="1">
184
            <select name="f13" id="f13">
185
            [% IF ( f13a ) %]
185
            [% IF ( f13a ) %]
186
                <option value="a" selected="selected">a- Displayed in standard schedules or tables</option>
186
                <option value="a" selected="selected">a- Displayed in standard schedules or tables</option>
187
            [% ELSE %]
187
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_leader.tt (-7 / +7 lines)
Lines 16-22 Link Here
16
	<tr>
16
	<tr>
17
		<td><label for="f5">5- Record status</label></td>
17
		<td><label for="f5">5- Record status</label></td>
18
		<td>
18
		<td>
19
			<select name="f5" id="f5" size="1">
19
            <select name="f5" id="f5">
20
			[% IF ( f5a ) %]
20
			[% IF ( f5a ) %]
21
                <option value="a" selected="selected">a- Increase in encoding level</option>
21
                <option value="a" selected="selected">a- Increase in encoding level</option>
22
			[% ELSE %]
22
			[% ELSE %]
Lines 49-55 Link Here
49
	<tr>
49
	<tr>
50
		<td><label for="f6">6- Type of record</label></td>
50
		<td><label for="f6">6- Type of record</label></td>
51
		<td>
51
		<td>
52
			<select name="f6" id="f6" size="1">
52
            <select name="f6" id="f6">
53
			[% IF ( f6a ) %]
53
			[% IF ( f6a ) %]
54
				<option value="a" selected="selected">a- Language material</option>
54
				<option value="a" selected="selected">a- Language material</option>
55
			[% ELSE %]
55
			[% ELSE %]
Lines 126-132 Link Here
126
	<tr>
126
	<tr>
127
		<td><label for="f7">7- Bibliographic level</label></td>
127
		<td><label for="f7">7- Bibliographic level</label></td>
128
		<td>
128
		<td>
129
			<select name="f7" id="f7" size="1">
129
            <select name="f7" id="f7">
130
				[% IF ( f7a ) %]
130
				[% IF ( f7a ) %]
131
					<option value="a" selected="selected">a- Monographic component part</option>
131
					<option value="a" selected="selected">a- Monographic component part</option>
132
				[% ELSE %]
132
				[% ELSE %]
Lines 169-175 Link Here
169
	<tr>
169
	<tr>
170
		<td><label for="f8">8- Type of control</label></td>
170
		<td><label for="f8">8- Type of control</label></td>
171
		<td>
171
		<td>
172
			<select name="f8" id="f8" size="1">
172
            <select name="f8" id="f8">
173
				[% IF ( f8 ) %]
173
				[% IF ( f8 ) %]
174
					<option value=" " selected="selected">No specific type</option>
174
					<option value=" " selected="selected">No specific type</option>
175
				[% ELSE %]
175
				[% ELSE %]
Lines 195-201 Link Here
195
    <tr>
195
    <tr>
196
		<td><label for="f17">17- Encoding level</label></td>
196
		<td><label for="f17">17- Encoding level</label></td>
197
		<td>
197
		<td>
198
			<select name="f17" id="f17" size="1">
198
            <select name="f17" id="f17">
199
				[% IF ( f17 ) %]
199
				[% IF ( f17 ) %]
200
					<option value=" " selected="selected">full level</option>
200
					<option value=" " selected="selected">full level</option>
201
				[% ELSE %]
201
				[% ELSE %]
Lines 253-259 Link Here
253
	<tr>
253
	<tr>
254
		<td><label for="f18">18 - Descriptive cataloging form</label></td>
254
		<td><label for="f18">18 - Descriptive cataloging form</label></td>
255
		<td>
255
		<td>
256
			<select name="f18" id="f18" size="1">
256
            <select name="f18" id="f18">
257
				[% IF ( f18 ) %]
257
				[% IF ( f18 ) %]
258
					<option value=" " selected="selected">Non-ISBD</option>
258
					<option value=" " selected="selected">Non-ISBD</option>
259
				[% ELSE %]
259
				[% ELSE %]
Lines 291-297 Link Here
291
	<tr>
291
	<tr>
292
		<td><label for="f19">19 - Multipart resource record level</label></td>
292
		<td><label for="f19">19 - Multipart resource record level</label></td>
293
		<td>
293
		<td>
294
			<select name="f19" id="f19" size="1">
294
            <select name="f19" id="f19">
295
				[% IF ( f19 ) %]
295
				[% IF ( f19 ) %]
296
					<option value=" " selected="selected">Not specified or not applicable </option>
296
					<option value=" " selected="selected">Not specified or not applicable </option>
297
				[% ELSE %]
297
				[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/marc21_leader_authorities.tt (-3 / +3 lines)
Lines 16-22 Link Here
16
	<tr>
16
	<tr>
17
		<td><label for="f5">5- Record status</label></td>
17
		<td><label for="f5">5- Record status</label></td>
18
		<td>
18
		<td>
19
			<select name="f5" id="f5" size="1">
19
            <select name="f5" id="f5">
20
			[% IF ( f5a ) %]
20
			[% IF ( f5a ) %]
21
				<option value="a" selected="selected">a- Increase in encoding level</option>
21
				<option value="a" selected="selected">a- Increase in encoding level</option>
22
			[% ELSE %]
22
			[% ELSE %]
Lines 71-77 Link Here
71
	<tr>
71
	<tr>
72
		<td><label for="f9">9- Encoding</label></td>
72
		<td><label for="f9">9- Encoding</label></td>
73
		<td>
73
		<td>
74
			<select name="f9" id="f9" size="1">
74
            <select name="f9" id="f9">
75
				[% IF ( f9 ) %]
75
				[% IF ( f9 ) %]
76
					<option value=" " selected="selected">MARC-8</option>
76
					<option value=" " selected="selected">MARC-8</option>
77
				[% ELSE %]
77
				[% ELSE %]
Lines 92-98 Link Here
92
	<tr>
92
	<tr>
93
		<td><label for="f17">17- Encoding level</label></td>
93
		<td><label for="f17">17- Encoding level</label></td>
94
		<td>
94
		<td>
95
			<select name="f17" id="f17" size="1">
95
            <select name="f17" id="f17">
96
				[% IF ( f17n ) %]
96
				[% IF ( f17n ) %]
97
					<option value="n" selected="selected">n- Complete authority record</option>
97
					<option value="n" selected="selected">n- Complete authority record</option>
98
				[% ELSE %]
98
				[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_field_007.tt (-52 / +52 lines)
Lines 109-115 function RedrawChoices(typ){ Link Here
109
 	                  <tr> \
109
 	                  <tr> \
110
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
110
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
111
                           <td> \
111
                           <td> \
112
                            <select name="f1" id="f1" size="1"> \
112
                            <select name="f1" id="f1"> \
113
                 [% IF ( f1a ) %] \
113
                 [% IF ( f1a ) %] \
114
                              <option value="a" selected="selected">a Anamorfisk kart</option> \
114
                              <option value="a" selected="selected">a Anamorfisk kart</option> \
115
                             [% ELSE %] \
115
                             [% ELSE %] \
Lines 227-233 function RedrawChoices(typ){ Link Here
227
 	                  <tr> \
227
 	                  <tr> \
228
                           <td><label for="f3">03 Farge</label></td> \
228
                           <td><label for="f3">03 Farge</label></td> \
229
                           <td> \
229
                           <td> \
230
                            <select name="f3" id="f3" size="1"> \
230
                            <select name="f3" id="f3"> \
231
                 [% IF ( f3 ) %] \
231
                 [% IF ( f3 ) %] \
232
                              <option value=" " selected="selected">^ Ikke angitt</option> \
232
                              <option value=" " selected="selected">^ Ikke angitt</option> \
233
                             [% ELSE %] \
233
                             [% ELSE %] \
Lines 249-255 function RedrawChoices(typ){ Link Here
249
 	                  <tr> \
249
 	                  <tr> \
250
                           <td><label for="f4">04 Fysisk materiale</label></td> \
250
                           <td><label for="f4">04 Fysisk materiale</label></td> \
251
                           <td> \
251
                           <td> \
252
                            <select name="f4" id="f4" size="1"> \
252
                            <select name="f4" id="f4"> \
253
	[% IF ( f4 ) %] \
253
	[% IF ( f4 ) %] \
254
		<option value=" " selected="selected">^ Ikke angitt</option> \
254
		<option value=" " selected="selected">^ Ikke angitt</option> \
255
		[% ELSE %] \
255
		[% ELSE %] \
Lines 311-317 function RedrawChoices(typ){ Link Here
311
 	                  <tr> \
311
 	                  <tr> \
312
                           <td><label for="f5">05 Reproduksjonstype</label></td> \
312
                           <td><label for="f5">05 Reproduksjonstype</label></td> \
313
                           <td> \
313
                           <td> \
314
                            <select name="f5" id="f5" size="1"> \
314
                            <select name="f5" id="f5"> \
315
	[% IF ( f5f ) %] \
315
	[% IF ( f5f ) %] \
316
		<option value="f" selected="selected">f Faksimile</option> \
316
		<option value="f" selected="selected">f Faksimile</option> \
317
		[% ELSE %] \
317
		[% ELSE %] \
Lines 338-344 function RedrawChoices(typ){ Link Here
338
 	                  <tr> \
338
 	                  <tr> \
339
                           <td><label for="f6">06 Produksjons- / reproduksjonsdetaljer</label></td> \
339
                           <td><label for="f6">06 Produksjons- / reproduksjonsdetaljer</label></td> \
340
                           <td> \
340
                           <td> \
341
                            <select name="f6" id="f6" size="1"> \
341
                            <select name="f6" id="f6"> \
342
	[% IF ( f6a ) %] \
342
	[% IF ( f6a ) %] \
343
		<option value="a" selected="selected">a Blåkopi</option> \
343
		<option value="a" selected="selected">a Blåkopi</option> \
344
		[% ELSE %] \
344
		[% ELSE %] \
Lines 370-376 function RedrawChoices(typ){ Link Here
370
 	                  <tr> \
370
 	                  <tr> \
371
                           <td><label for="f7">07 Positiv/negativ</label></td> \
371
                           <td><label for="f7">07 Positiv/negativ</label></td> \
372
                           <td> \
372
                           <td> \
373
                            <select name="f7" id="f7" size="1"> \
373
                            <select name="f7" id="f7"> \
374
	[% IF ( f7a ) %] \
374
	[% IF ( f7a ) %] \
375
		<option value="a" selected="selected">a Positiv</option> \
375
		<option value="a" selected="selected">a Positiv</option> \
376
		[% ELSE %] \
376
		[% ELSE %] \
Lines 405-411 function RedrawChoices(typ){ Link Here
405
	                  <tr> \
405
	                  <tr> \
406
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
406
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
407
                           <td> \
407
                           <td> \
408
                            <select id="f1" name="f1" size="1"> \
408
                            <select id="f1" name="f1"> \
409
	[% IF ( f1a ) %] \
409
	[% IF ( f1a ) %] \
410
		<option value="a" selected="selected">a Magnetisk-optisk plate</option> \
410
		<option value="a" selected="selected">a Magnetisk-optisk plate</option> \
411
		[% ELSE %] \
411
		[% ELSE %] \
Lines 470-476 function RedrawChoices(typ){ Link Here
470
 	                  <tr> \
470
 	                  <tr> \
471
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
471
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
472
                           <td> \
472
                           <td> \
473
                            <select name="f1" id="f1" size="1"> \
473
                            <select name="f1" id="f1"> \
474
	[% IF ( f1a ) %] \
474
	[% IF ( f1a ) %] \
475
		<option value="a" selected="selected">a Stjerneglobus</option> \
475
		<option value="a" selected="selected">a Stjerneglobus</option> \
476
		[% ELSE %] \
476
		[% ELSE %] \
Lines 503-509 function RedrawChoices(typ){ Link Here
503
 	                  <tr> \
503
 	                  <tr> \
504
                           <td><label for="f3">03 Farge</label></td> \
504
                           <td><label for="f3">03 Farge</label></td> \
505
                           <td> \
505
                           <td> \
506
                            <select name="f3" id="f3" size="1"> \
506
                            <select name="f3" id="f3"> \
507
	[% IF ( f3a ) %] \
507
	[% IF ( f3a ) %] \
508
		<option value="a" selected="selected">a En-farget</option> \
508
		<option value="a" selected="selected">a En-farget</option> \
509
		[% ELSE %] \
509
		[% ELSE %] \
Lines 520-526 function RedrawChoices(typ){ Link Here
520
 	                  <tr> \
520
 	                  <tr> \
521
                           <td><label for="f4">04 Fysisk materiale</label></td> \
521
                           <td><label for="f4">04 Fysisk materiale</label></td> \
522
                           <td> \
522
                           <td> \
523
                            <select name="f4" id="f4" size="1"> \
523
                            <select name="f4" id="f4"> \
524
 	[% IF ( f4a ) %] \
524
 	[% IF ( f4a ) %] \
525
		<option value="a" selected="selected">a Papir</option> \
525
		<option value="a" selected="selected">a Papir</option> \
526
		[% ELSE %] \
526
		[% ELSE %] \
Lines 577-583 function RedrawChoices(typ){ Link Here
577
 	                  <tr> \
577
 	                  <tr> \
578
                           <td><label for="f5">05 Reproduksjonstype</label></td> \
578
                           <td><label for="f5">05 Reproduksjonstype</label></td> \
579
                           <td> \
579
                           <td> \
580
                            <select name="f5" id="f5" size="1"> \
580
                            <select name="f5" id="f5"> \
581
	[% IF ( f5f ) %] \
581
	[% IF ( f5f ) %] \
582
		<option value="f" selected="selected">f Faksimile</option> \
582
		<option value="f" selected="selected">f Faksimile</option> \
583
		[% ELSE %] \
583
		[% ELSE %] \
Lines 612-618 function RedrawChoices(typ){ Link Here
612
 	                  <tr> \
612
 	                  <tr> \
613
                           <td><label for="f1">01 Specific material designation</label></td> \
613
                           <td><label for="f1">01 Specific material designation</label></td> \
614
                           <td> \
614
                           <td> \
615
                            <select name="f1" id="f1" size="1"> \
615
                            <select name="f1" id="f1"> \
616
	[% IF ( f1 ) %] \
616
	[% IF ( f1 ) %] \
617
		<option value=" " selected="selected">^ Ikke angitt</option> \
617
		<option value=" " selected="selected">^ Ikke angitt</option> \
618
		[% ELSE %] \
618
		[% ELSE %] \
Lines 665-671 function RedrawChoices(typ){ Link Here
665
 	                  <tr> \
665
 	                  <tr> \
666
                           <td><label for="f3">03 Farge</label></td> \
666
                           <td><label for="f3">03 Farge</label></td> \
667
                           <td> \
667
                           <td> \
668
                            <select name="f3" id="f3" size="1"> \
668
                            <select name="f3" id="f3"> \
669
 	[% IF ( f3 ) %] \
669
 	[% IF ( f3 ) %] \
670
		<option value=" " selected="selected">^ Ikke angitt</option> \
670
		<option value=" " selected="selected">^ Ikke angitt</option> \
671
		[% ELSE %] \
671
		[% ELSE %] \
Lines 717-723 function RedrawChoices(typ){ Link Here
717
 	                  <tr> \
717
 	                  <tr> \
718
                           <td><label for="f4">04 Emulsjonsbasis</label></td> \
718
                           <td><label for="f4">04 Emulsjonsbasis</label></td> \
719
                           <td> \
719
                           <td> \
720
                            <select name="f4" id="f4" size="1"> \
720
                            <select name="f4" id="f4"> \
721
	[% IF ( f4 ) %] \
721
	[% IF ( f4 ) %] \
722
		<option value=" " selected="selected">^ Ikke angitt</option> \
722
		<option value=" " selected="selected">^ Ikke angitt</option> \
723
		[% ELSE %] \
723
		[% ELSE %] \
Lines 769-775 function RedrawChoices(typ){ Link Here
769
 	                  <tr> \
769
 	                  <tr> \
770
                           <td><label for="f5">05 Lyd på materialet eller separat</label></td> \
770
                           <td><label for="f5">05 Lyd på materialet eller separat</label></td> \
771
                           <td> \
771
                           <td> \
772
                            <select name="f5" id="f5" size="1"> \
772
                            <select name="f5" id="f5"> \
773
	[% IF ( f5 ) %] \
773
	[% IF ( f5 ) %] \
774
		<option value=" " selected="selected">^ Ikke angitt</option> \
774
		<option value=" " selected="selected">^ Ikke angitt</option> \
775
		[% ELSE %] \
775
		[% ELSE %] \
Lines 801-807 function RedrawChoices(typ){ Link Here
801
 	                  <tr> \
801
 	                  <tr> \
802
                           <td><label for="f6">06 Lydmateriale</label></td> \
802
                           <td><label for="f6">06 Lydmateriale</label></td> \
803
                           <td> \
803
                           <td> \
804
                            <select name="f6" id="f6" size="1"> \
804
                            <select name="f6" id="f6"> \
805
	[% IF ( f6 ) %] \
805
	[% IF ( f6 ) %] \
806
		<option value=" " selected="selected">^ Ikke angitt</option> \
806
		<option value=" " selected="selected">^ Ikke angitt</option> \
807
		[% ELSE %] \
807
		[% ELSE %] \
Lines 858-864 function RedrawChoices(typ){ Link Here
858
 	                  <tr> \
858
 	                  <tr> \
859
                           <td><label for="f7">07 Formater</label></td> \
859
                           <td><label for="f7">07 Formater</label></td> \
860
                           <td> \
860
                           <td> \
861
                            <select name="f7" id="f7" size="1"> \
861
                            <select name="f7" id="f7"> \
862
	[% IF ( f7 ) %] \
862
	[% IF ( f7 ) %] \
863
		<option value=" " selected="selected">^ Ikke angitt</option> \
863
		<option value=" " selected="selected">^ Ikke angitt</option> \
864
		[% ELSE %] \
864
		[% ELSE %] \
Lines 955-961 function RedrawChoices(typ){ Link Here
955
 	                  <tr> \
955
 	                  <tr> \
956
                           <td><label for="f8">08 Monteringsmateriale</label></td> \
956
                           <td><label for="f8">08 Monteringsmateriale</label></td> \
957
                           <td> \
957
                           <td> \
958
                            <select name="f8" id="f8" size="1"> \
958
                            <select name="f8" id="f8"> \
959
	[% IF ( f8 ) %] \
959
	[% IF ( f8 ) %] \
960
		<option value=" " selected="selected">^ Ikke angitt</option> \
960
		<option value=" " selected="selected">^ Ikke angitt</option> \
961
		[% ELSE %] \
961
		[% ELSE %] \
Lines 1025-1031 function RedrawChoices(typ){ Link Here
1025
	                  <tr> \
1025
	                  <tr> \
1026
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1026
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1027
                           <td> \
1027
                           <td> \
1028
                            <select id="f1" name="f1" size="1"> \
1028
                            <select id="f1" name="f1"> \
1029
	[% IF ( f1 ) %] \
1029
	[% IF ( f1 ) %] \
1030
		<option value=" " selected="selected">^ Ikke angitt</option> \
1030
		<option value=" " selected="selected">^ Ikke angitt</option> \
1031
		[% ELSE %] \
1031
		[% ELSE %] \
Lines 1073-1079 function RedrawChoices(typ){ Link Here
1073
                          <tr> \
1073
                          <tr> \
1074
                           <td><label for="f3">03 Positiv/negativ</label></td> \
1074
                           <td><label for="f3">03 Positiv/negativ</label></td> \
1075
                            <td> \
1075
                            <td> \
1076
                             <select id="f3" name="f3" size="1"> \
1076
                             <select id="f3" name="f3"> \
1077
	[% IF ( f3 ) %] \
1077
	[% IF ( f3 ) %] \
1078
		<option value=" " selected="selected">^ Ikke angitt</option> \
1078
		<option value=" " selected="selected">^ Ikke angitt</option> \
1079
		[% ELSE %] \
1079
		[% ELSE %] \
Lines 1110-1116 function RedrawChoices(typ){ Link Here
1110
                          <tr> \
1110
                          <tr> \
1111
                           <td><label for="f4">04 Formater</label></td> \
1111
                           <td><label for="f4">04 Formater</label></td> \
1112
                            <td> \
1112
                            <td> \
1113
                             <select id="f4" name="f4" size="1"> \
1113
                             <select id="f4" name="f4"> \
1114
	[% IF ( f4 ) %] \
1114
	[% IF ( f4 ) %] \
1115
		<option value=" " selected="selected">^ Ikke angitt</option> \
1115
		<option value=" " selected="selected">^ Ikke angitt</option> \
1116
		[% ELSE %] \
1116
		[% ELSE %] \
Lines 1177-1183 function RedrawChoices(typ){ Link Here
1177
                          <tr> \
1177
                          <tr> \
1178
                           <td><label for="f5">05 Reduksjonsskala</label></td> \
1178
                           <td><label for="f5">05 Reduksjonsskala</label></td> \
1179
                            <td> \
1179
                            <td> \
1180
                             <select id="f5" name="f5" size="1"> \
1180
                             <select id="f5" name="f5"> \
1181
	[% IF ( f5 ) %] \
1181
	[% IF ( f5 ) %] \
1182
		<option value=" " selected="selected">^ Ikke angitt</option> \
1182
		<option value=" " selected="selected">^ Ikke angitt</option> \
1183
		[% ELSE %] \
1183
		[% ELSE %] \
Lines 1229-1235 function RedrawChoices(typ){ Link Here
1229
                          <tr> \
1229
                          <tr> \
1230
                           <td><label for="f7">09 Farge</label></td> \
1230
                           <td><label for="f7">09 Farge</label></td> \
1231
                            <td> \
1231
                            <td> \
1232
                             <select id="f7" name="f7" size="1"> \
1232
                             <select id="f7" name="f7"> \
1233
	[% IF ( f9 ) %] \
1233
	[% IF ( f9 ) %] \
1234
		<option value=" " selected="selected">^ Ikke angitt</option> \
1234
		<option value=" " selected="selected">^ Ikke angitt</option> \
1235
		[% ELSE %] \
1235
		[% ELSE %] \
Lines 1266-1272 function RedrawChoices(typ){ Link Here
1266
                          <tr> \
1266
                          <tr> \
1267
                           <td><label for="f8">10 Emulsjon for film</label></td> \
1267
                           <td><label for="f8">10 Emulsjon for film</label></td> \
1268
                            <td> \
1268
                            <td> \
1269
                             <select id="f8" name="f8" size="1"> \
1269
                             <select id="f8" name="f8"> \
1270
	[% IF ( f10 ) %] \
1270
	[% IF ( f10 ) %] \
1271
		<option value=" " selected="selected">^ Ikke angitt</option> \
1271
		<option value=" " selected="selected">^ Ikke angitt</option> \
1272
		[% ELSE %] \
1272
		[% ELSE %] \
Lines 1308-1314 function RedrawChoices(typ){ Link Here
1308
                          <tr> \
1308
                          <tr> \
1309
                           <td><label for="f11">11 Generasjon</label></td> \
1309
                           <td><label for="f11">11 Generasjon</label></td> \
1310
                            <td> \
1310
                            <td> \
1311
                             <select id="f11" name="f11" size="1"> \
1311
                             <select id="f11" name="f11"> \
1312
	[% IF ( f11 ) %] \
1312
	[% IF ( f11 ) %] \
1313
		<option value=" " selected="selected">^ Ikke angitt</option> \
1313
		<option value=" " selected="selected">^ Ikke angitt</option> \
1314
		[% ELSE %] \
1314
		[% ELSE %] \
Lines 1345-1351 function RedrawChoices(typ){ Link Here
1345
                          <tr> \
1345
                          <tr> \
1346
                           <td><label for="f12">12 RÃ¥film</label></td> \
1346
                           <td><label for="f12">12 RÃ¥film</label></td> \
1347
                            <td> \
1347
                            <td> \
1348
                             <select id="f12" name="f12" size="1"> \
1348
                             <select id="f12" name="f12"> \
1349
	[% IF ( f12 ) %] \
1349
	[% IF ( f12 ) %] \
1350
		<option value=" " selected="selected">^ Ikke angitt</option> \
1350
		<option value=" " selected="selected">^ Ikke angitt</option> \
1351
		[% ELSE %] \
1351
		[% ELSE %] \
Lines 1385-1391 function RedrawChoices(typ){ Link Here
1385
 	                  <tr> \
1385
 	                  <tr> \
1386
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1386
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1387
                           <td> \
1387
                           <td> \
1388
                            <select name="f1" id="f1" size="1"> \
1388
                            <select name="f1" id="f1"> \
1389
	[% IF ( f1 ) %] \
1389
	[% IF ( f1 ) %] \
1390
		<option value=" " selected="selected">^ Ikke angitt</option> \
1390
		<option value=" " selected="selected">^ Ikke angitt</option> \
1391
		[% ELSE %] \
1391
		[% ELSE %] \
Lines 1493-1499 function RedrawChoices(typ){ Link Here
1493
 	                  <tr> \
1493
 	                  <tr> \
1494
                           <td><label for="f3">03 Farge</label></td> \
1494
                           <td><label for="f3">03 Farge</label></td> \
1495
                           <td> \
1495
                           <td> \
1496
                            <select name="f3" id="f3" size="1"> \
1496
                            <select name="f3" id="f3"> \
1497
	[% IF ( f3 ) %] \
1497
	[% IF ( f3 ) %] \
1498
		<option value=" " selected="selected">^ Ikke angitt</option> \
1498
		<option value=" " selected="selected">^ Ikke angitt</option> \
1499
		[% ELSE %] \
1499
		[% ELSE %] \
Lines 1540-1546 function RedrawChoices(typ){ Link Here
1540
 	                  <tr> \
1540
 	                  <tr> \
1541
                           <td><label for="f4">04 Fysisk materiale</label></td> \
1541
                           <td><label for="f4">04 Fysisk materiale</label></td> \
1542
                           <td> \
1542
                           <td> \
1543
                            <select name="f4" id="f4" size="1"> \
1543
                            <select name="f4" id="f4"> \
1544
	[% IF ( f4 ) %] \
1544
	[% IF ( f4 ) %] \
1545
		<option value=" " selected="selected">^ Ikke angitt</option> \
1545
		<option value=" " selected="selected">^ Ikke angitt</option> \
1546
		[% ELSE %] \
1546
		[% ELSE %] \
Lines 1637-1643 function RedrawChoices(typ){ Link Here
1637
 	                  <tr> \
1637
 	                  <tr> \
1638
                           <td><label for="f5">05 Monteringsmateriale</label></td> \
1638
                           <td><label for="f5">05 Monteringsmateriale</label></td> \
1639
                           <td> \
1639
                           <td> \
1640
                            <select name="f5" id="f5" size="1"> \
1640
                            <select name="f5" id="f5"> \
1641
	[% IF ( f5 ) %] \
1641
	[% IF ( f5 ) %] \
1642
		<option value=" " selected="selected">^ Ikke angitt</option> \
1642
		<option value=" " selected="selected">^ Ikke angitt</option> \
1643
		[% ELSE %] \
1643
		[% ELSE %] \
Lines 1747-1753 function RedrawChoices(typ){ Link Here
1747
 	                  <tr> \
1747
 	                  <tr> \
1748
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1748
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
1749
                           <td> \
1749
                           <td> \
1750
                            <select name="f1" id="f1" size="1"> \
1750
                            <select name="f1" id="f1"> \
1751
	[% IF ( f1 ) %] \
1751
	[% IF ( f1 ) %] \
1752
		<option value=" " selected="selected">^ Ikke angitt</option> \
1752
		<option value=" " selected="selected">^ Ikke angitt</option> \
1753
		[% ELSE %] \
1753
		[% ELSE %] \
Lines 1785-1791 function RedrawChoices(typ){ Link Here
1785
 	                  <tr> \
1785
 	                  <tr> \
1786
                           <td><label for="f3">03 Farge</label></td> \
1786
                           <td><label for="f3">03 Farge</label></td> \
1787
                           <td> \
1787
                           <td> \
1788
                            <select name="f3" id="f3" size="1"> \
1788
                            <select name="f3" id="f3"> \
1789
	[% IF ( f3 ) %] \
1789
	[% IF ( f3 ) %] \
1790
		<option value=" " selected="selected">^ Ikke angitt</option> \
1790
		<option value=" " selected="selected">^ Ikke angitt</option> \
1791
		[% ELSE %] \
1791
		[% ELSE %] \
Lines 1832-1838 function RedrawChoices(typ){ Link Here
1832
 	                  <tr> \
1832
 	                  <tr> \
1833
                           <td><label for="f4">04 Filmens visningsformat </label></td> \
1833
                           <td><label for="f4">04 Filmens visningsformat </label></td> \
1834
                           <td> \
1834
                           <td> \
1835
                            <select name="f4" id="f4" size="1"> \
1835
                            <select name="f4" id="f4"> \
1836
	[% IF ( f4 ) %] \
1836
	[% IF ( f4 ) %] \
1837
		<option value=" " selected="selected">^ Ikke angitt</option> \
1837
		<option value=" " selected="selected">^ Ikke angitt</option> \
1838
		[% ELSE %] \
1838
		[% ELSE %] \
Lines 1874-1880 function RedrawChoices(typ){ Link Here
1874
 	                  <tr> \
1874
 	                  <tr> \
1875
                           <td><label for="f5">05 Lyd som del av filmen eller separat</label></td> \
1875
                           <td><label for="f5">05 Lyd som del av filmen eller separat</label></td> \
1876
                           <td> \
1876
                           <td> \
1877
                            <select name="f5" id="f5" size="1"> \
1877
                            <select name="f5" id="f5"> \
1878
	[% IF ( f5 ) %] \
1878
	[% IF ( f5 ) %] \
1879
		<option value=" " selected="selected">^ Ikke angitt</option> \
1879
		<option value=" " selected="selected">^ Ikke angitt</option> \
1880
		[% ELSE %] \
1880
		[% ELSE %] \
Lines 1906-1912 function RedrawChoices(typ){ Link Here
1906
 	                  <tr> \
1906
 	                  <tr> \
1907
                           <td><label for="f6">06 Lydmateriale</label></td> \
1907
                           <td><label for="f6">06 Lydmateriale</label></td> \
1908
                           <td> \
1908
                           <td> \
1909
                            <select name="f6" id="f6" size="1"> \
1909
                            <select name="f6" id="f6"> \
1910
 	[% IF ( f6 ) %] \
1910
 	[% IF ( f6 ) %] \
1911
		<option value=" " selected="selected">^ Ikke angitt</option> \
1911
		<option value=" " selected="selected">^ Ikke angitt</option> \
1912
		[% ELSE %] \
1912
		[% ELSE %] \
Lines 1963-1969 function RedrawChoices(typ){ Link Here
1963
 	                  <tr> \
1963
 	                  <tr> \
1964
                           <td><label for="f7">07 Formater (bredde)</label></td> \
1964
                           <td><label for="f7">07 Formater (bredde)</label></td> \
1965
                           <td> \
1965
                           <td> \
1966
                            <select name="f7" id="f7" size="1"> \
1966
                            <select name="f7" id="f7"> \
1967
	[% IF ( f7 ) %] \
1967
	[% IF ( f7 ) %] \
1968
		<option value=" " selected="selected">^ Ikke angitt</option> \
1968
		<option value=" " selected="selected">^ Ikke angitt</option> \
1969
		[% ELSE %] \
1969
		[% ELSE %] \
Lines 2020-2026 function RedrawChoices(typ){ Link Here
2020
 	                  <tr> \
2020
 	                  <tr> \
2021
                           <td><label for="f8">08 Type avspillingskanaler for lyden</label></td> \
2021
                           <td><label for="f8">08 Type avspillingskanaler for lyden</label></td> \
2022
                           <td> \
2022
                           <td> \
2023
                            <select name="f8" id="f8" size="1"> \
2023
                            <select name="f8" id="f8"> \
2024
	[% IF ( f8 ) %] \
2024
	[% IF ( f8 ) %] \
2025
		<option value=" " selected="selected">^ Ikke angitt</option> \
2025
		<option value=" " selected="selected">^ Ikke angitt</option> \
2026
		[% ELSE %] \
2026
		[% ELSE %] \
Lines 2067-2073 function RedrawChoices(typ){ Link Here
2067
 	                  <tr> \
2067
 	                  <tr> \
2068
                           <td><label for="f9">09 Produksjonselementer</label></td> \
2068
                           <td><label for="f9">09 Produksjonselementer</label></td> \
2069
                           <td> \
2069
                           <td> \
2070
                            <select name="f9" id="f9" size="1"> \
2070
                            <select name="f9" id="f9"> \
2071
	[% IF ( f9 ) %] \
2071
	[% IF ( f9 ) %] \
2072
		<option value=" " selected="selected">^ Ikke angitt</option> \
2072
		<option value=" " selected="selected">^ Ikke angitt</option> \
2073
		[% ELSE %] \
2073
		[% ELSE %] \
Lines 2109-2115 function RedrawChoices(typ){ Link Here
2109
 	                  <tr> \
2109
 	                  <tr> \
2110
                           <td><label for="f10">10 Positiv/negativ</label></td> \
2110
                           <td><label for="f10">10 Positiv/negativ</label></td> \
2111
                           <td> \
2111
                           <td> \
2112
                            <select name="f10" id="f10" size="1"> \
2112
                            <select name="f10" id="f10"> \
2113
	[% IF ( f10 ) %] \
2113
	[% IF ( f10 ) %] \
2114
		<option value=" " selected="selected">^ Ikke angitt</option> \
2114
		<option value=" " selected="selected">^ Ikke angitt</option> \
2115
		[% ELSE %] \
2115
		[% ELSE %] \
Lines 2146-2152 function RedrawChoices(typ){ Link Here
2146
 	                  <tr> \
2146
 	                  <tr> \
2147
                           <td><label for="f11">11 Kopigenerasjon</label></td> \
2147
                           <td><label for="f11">11 Kopigenerasjon</label></td> \
2148
                           <td> \
2148
                           <td> \
2149
                            <select name="f11" id="f11" size="1"> \
2149
                            <select name="f11" id="f11"> \
2150
	[% IF ( f11 ) %] \
2150
	[% IF ( f11 ) %] \
2151
		<option value=" " selected="selected">^ Ikke angitt</option> \
2151
		<option value=" " selected="selected">^ Ikke angitt</option> \
2152
		[% ELSE %] \
2152
		[% ELSE %] \
Lines 2188-2194 function RedrawChoices(typ){ Link Here
2188
                          <tr> \
2188
                          <tr> \
2189
                           <td><label for="f12">12 RÃ¥film</label></td> \
2189
                           <td><label for="f12">12 RÃ¥film</label></td> \
2190
                            <td> \
2190
                            <td> \
2191
                             <select id="f12" name="f12" size="1"> \
2191
                             <select id="f12" name="f12"> \
2192
	[% IF ( f12 ) %] \
2192
	[% IF ( f12 ) %] \
2193
		<option value=" " selected="selected">^ Ikke angitt</option> \
2193
		<option value=" " selected="selected">^ Ikke angitt</option> \
2194
		[% ELSE %] \
2194
		[% ELSE %] \
Lines 2246-2252 function RedrawChoices(typ){ Link Here
2246
                          </tr> \
2246
                          </tr> \
2247
                           <td><label for="f15">15 Forfalls-stadium</label></td> \
2247
                           <td><label for="f15">15 Forfalls-stadium</label></td> \
2248
                           <td> \
2248
                           <td> \
2249
                            <select name="f15" id="f15" size="1"> \
2249
                            <select name="f15" id="f15"> \
2250
	[% IF ( f15 ) %] \
2250
	[% IF ( f15 ) %] \
2251
		<option value=" " selected="selected">^ Ikke angitt</option> \
2251
		<option value=" " selected="selected">^ Ikke angitt</option> \
2252
		[% ELSE %] \
2252
		[% ELSE %] \
Lines 2312-2318 function RedrawChoices(typ){ Link Here
2312
                          </tr> \
2312
                          </tr> \
2313
                           <td><label for="f16">16 Fullstendighet</label></td> \
2313
                           <td><label for="f16">16 Fullstendighet</label></td> \
2314
                           <td> \
2314
                           <td> \
2315
                            <select name="f16" id="f16" size="1"> \
2315
                            <select name="f16" id="f16"> \
2316
	[% IF ( f16 ) %] \
2316
	[% IF ( f16 ) %] \
2317
		<option value=" " selected="selected">^ Ikke angitt</option> \
2317
		<option value=" " selected="selected">^ Ikke angitt</option> \
2318
		[% ELSE %] \
2318
		[% ELSE %] \
Lines 2357-2363 function RedrawChoices(typ){ Link Here
2357
 	                  <tr> \
2357
 	                  <tr> \
2358
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
2358
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
2359
                           <td> \
2359
                           <td> \
2360
                            <select name="f1" id="f1" size="1"> \
2360
                            <select name="f1" id="f1"> \
2361
	[% IF ( f1 ) %] \
2361
	[% IF ( f1 ) %] \
2362
		<option value=" " selected="selected">^ Ikke angitt</option> \
2362
		<option value=" " selected="selected">^ Ikke angitt</option> \
2363
		[% ELSE %] \
2363
		[% ELSE %] \
Lines 2427-2433 function RedrawChoices(typ){ Link Here
2427
 	                  <tr> \
2427
 	                  <tr> \
2428
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
2428
                           <td><label for="f1">01 Spesielle materialbetegnelser</label></td> \
2429
                           <td> \
2429
                           <td> \
2430
                            <select name="f1" id="f1" size="1"> \
2430
                            <select name="f1" id="f1"> \
2431
	[% IF ( f1 ) %] \
2431
	[% IF ( f1 ) %] \
2432
		<option value=" " selected="selected">^ Ikke angitt</option> \
2432
		<option value=" " selected="selected">^ Ikke angitt</option> \
2433
		[% ELSE %] \
2433
		[% ELSE %] \
Lines 2497-2503 function RedrawChoices(typ){ Link Here
2497
 	                  <tr> \
2497
 	                  <tr> \
2498
                           <td><label for="f1">01 Spesielle materialbetegnelser </label></td> \
2498
                           <td><label for="f1">01 Spesielle materialbetegnelser </label></td> \
2499
                           <td> \
2499
                           <td> \
2500
                            <select name="f1" id="f1" size="1"> \
2500
                            <select name="f1" id="f1"> \
2501
	[% IF ( f1 ) %] \
2501
	[% IF ( f1 ) %] \
2502
		<option value=" " selected="selected">^ Ikke angitt</option> \
2502
		<option value=" " selected="selected">^ Ikke angitt</option> \
2503
		[% ELSE %] \
2503
		[% ELSE %] \
Lines 2535-2541 function RedrawChoices(typ){ Link Here
2535
 	                  <tr> \
2535
 	                  <tr> \
2536
                           <td><label for="f3">03 Farge</label></td> \
2536
                           <td><label for="f3">03 Farge</label></td> \
2537
                           <td> \
2537
                           <td> \
2538
                            <select name="f3" id="f3" size="1"> \
2538
                            <select name="f3" id="f3"> \
2539
	[% IF ( f3 ) %] \
2539
	[% IF ( f3 ) %] \
2540
		<option value=" " selected="selected">^ Ikke angitt</option> \
2540
		<option value=" " selected="selected">^ Ikke angitt</option> \
2541
		[% ELSE %] \
2541
		[% ELSE %] \
Lines 2577-2583 function RedrawChoices(typ){ Link Here
2577
 	                  <tr> \
2577
 	                  <tr> \
2578
                           <td><label for="f4">04 Videoopptak-system</label></td> \
2578
                           <td><label for="f4">04 Videoopptak-system</label></td> \
2579
                           <td> \
2579
                           <td> \
2580
                            <select name="f4" id="f4" size="1"> \
2580
                            <select name="f4" id="f4"> \
2581
	[% IF ( f4 ) %] \
2581
	[% IF ( f4 ) %] \
2582
		<option value=" " selected="selected">^ Ikke angitt</option> \
2582
		<option value=" " selected="selected">^ Ikke angitt</option> \
2583
		[% ELSE %] \
2583
		[% ELSE %] \
Lines 2639-2645 function RedrawChoices(typ){ Link Here
2639
 	                  <tr> \
2639
 	                  <tr> \
2640
                           <td><label for="f5">05 Lyd på videoopptaket eller separat </label></td> \
2640
                           <td><label for="f5">05 Lyd på videoopptaket eller separat </label></td> \
2641
                           <td> \
2641
                           <td> \
2642
                            <select name="f5" id="f5" size="1"> \
2642
                            <select name="f5" id="f5"> \
2643
	[% IF ( f5 ) %] \
2643
	[% IF ( f5 ) %] \
2644
		<option value=" " selected="selected">^ Ikke angitt</option> \
2644
		<option value=" " selected="selected">^ Ikke angitt</option> \
2645
		[% ELSE %] \
2645
		[% ELSE %] \
Lines 2671-2677 function RedrawChoices(typ){ Link Here
2671
 	                  <tr> \
2671
 	                  <tr> \
2672
                           <td><label for="f6">06 Lydbærende materiale</label></td> \
2672
                           <td><label for="f6">06 Lydbærende materiale</label></td> \
2673
                           <td> \
2673
                           <td> \
2674
                            <select name="f6" id="f6" size="1"> \
2674
                            <select name="f6" id="f6"> \
2675
	[% IF ( f6 ) %] \
2675
	[% IF ( f6 ) %] \
2676
		<option value=" " selected="selected">^ Ikke angitt</option> \
2676
		<option value=" " selected="selected">^ Ikke angitt</option> \
2677
		[% ELSE %] \
2677
		[% ELSE %] \
Lines 2723-2729 function RedrawChoices(typ){ Link Here
2723
 	                  <tr> \
2723
 	                  <tr> \
2724
                           <td><label for="f7">07 Formater (bredde)</label></td> \
2724
                           <td><label for="f7">07 Formater (bredde)</label></td> \
2725
                           <td> \
2725
                           <td> \
2726
                            <select name="f7" id="f7" size="1"> \
2726
                            <select name="f7" id="f7"> \
2727
	[% IF ( f7 ) %] \
2727
	[% IF ( f7 ) %] \
2728
		<option value=" " selected="selected">^ Ikke angitt</option> \
2728
		<option value=" " selected="selected">^ Ikke angitt</option> \
2729
		[% ELSE %] \
2729
		[% ELSE %] \
Lines 2770-2776 function RedrawChoices(typ){ Link Here
2770
 	                  <tr> \
2770
 	                  <tr> \
2771
                           <td><label for="f8">08 Type avspillingskanaler for lyden</label></td> \
2771
                           <td><label for="f8">08 Type avspillingskanaler for lyden</label></td> \
2772
                           <td> \
2772
                           <td> \
2773
                            <select name="f8" id="f8" size="1"> \
2773
                            <select name="f8" id="f8"> \
2774
	[% IF ( f8 ) %] \
2774
	[% IF ( f8 ) %] \
2775
		<option value=" " selected="selected">^ Ikke angitt</option> \
2775
		<option value=" " selected="selected">^ Ikke angitt</option> \
2776
		[% ELSE %] \
2776
		[% ELSE %] \
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_field_008.tt (-64 / +64 lines)
Lines 60-66 Link Here
60
		<!-- 06 Type of date / Publication status -->
60
		<!-- 06 Type of date / Publication status -->
61
		<td><label for="f6">06 Dateringskode/Utgivelsesstatus</label></td>
61
		<td><label for="f6">06 Dateringskode/Utgivelsesstatus</label></td>
62
		<td>
62
		<td>
63
			<select name="f6" id="f6" size="1">
63
    <select name="f6" id="f6">
64
	[% IF ( f6 ) %]
64
	[% IF ( f6 ) %]
65
		<option value=" " selected="selected">^ Ikke angitt</option>
65
		<option value=" " selected="selected">^ Ikke angitt</option>
66
		[% ELSE %]
66
		[% ELSE %]
Lines 154-160 Link Here
154
<tr>
154
<tr>
155
                <td><label for="f39">39 Katalogiseringskilde</label></td>
155
                <td><label for="f39">39 Katalogiseringskilde</label></td>
156
                <td>
156
                <td>
157
                <select name="f39" id="f39" size="1">                                    
157
                <select name="f39" id="f39">
158
	[% IF ( f39 ) %]
158
	[% IF ( f39 ) %]
159
		<option value=" " selected="selected">^ Ikke angitt</option>
159
		<option value=" " selected="selected">^ Ikke angitt</option>
160
		[% ELSE %]
160
		[% ELSE %]
Lines 214-220 function RedrawChoices(typ){ Link Here
214
    divOutput.innerHTML='<table><tr> \
214
    divOutput.innerHTML='<table><tr> \
215
		<td>18 Illustrasjoner</td> \
215
		<td>18 Illustrasjoner</td> \
216
		<td> \
216
		<td> \
217
    <select name="f18" id="f18" size="1"> \
217
    <select name="f18" id="f18"> \
218
	[% IF ( f18 ) %] \
218
	[% IF ( f18 ) %] \
219
		<option value=" " selected="selected">^ Ikke angitt</option> \
219
		<option value=" " selected="selected">^ Ikke angitt</option> \
220
		[% ELSE %] \
220
		[% ELSE %] \
Lines 305-311 function RedrawChoices(typ){ Link Here
305
		</tr><tr> \
305
		</tr><tr> \
306
		<td>19 Illustrasjoner</td> \
306
		<td>19 Illustrasjoner</td> \
307
		<td> \
307
		<td> \
308
    <select name="f19" id="f19" size="1"> \
308
    <select name="f19" id="f19"> \
309
	[% IF ( f19 ) %] \
309
	[% IF ( f19 ) %] \
310
		<option value=" " selected="selected">^ Ikke angitt</option> \
310
		<option value=" " selected="selected">^ Ikke angitt</option> \
311
		[% ELSE %] \
311
		[% ELSE %] \
Lines 396-402 function RedrawChoices(typ){ Link Here
396
		</tr><tr> \
396
		</tr><tr> \
397
		<td>20 Illustrasjoner</td> \
397
		<td>20 Illustrasjoner</td> \
398
		<td> \
398
		<td> \
399
    <select name="f20" id="f20" size="1"> \
399
    <select name="f20" id="f20"> \
400
	[% IF ( f20 ) %] \
400
	[% IF ( f20 ) %] \
401
		<option value=" " selected="selected">^ Ikke angitt</option> \
401
		<option value=" " selected="selected">^ Ikke angitt</option> \
402
		[% ELSE %] \
402
		[% ELSE %] \
Lines 487-493 function RedrawChoices(typ){ Link Here
487
		</tr><tr> \
487
		</tr><tr> \
488
		<td>21 Illustrasjoner</td> \
488
		<td>21 Illustrasjoner</td> \
489
		<td> \
489
		<td> \
490
    <select name="f21" id="f21" size="1"> \
490
    <select name="f21" id="f21"> \
491
	[% IF ( f21 ) %] \
491
	[% IF ( f21 ) %] \
492
		<option value=" " selected="selected">^ Ikke angitt</option> \
492
		<option value=" " selected="selected">^ Ikke angitt</option> \
493
		[% ELSE %] \
493
		[% ELSE %] \
Lines 578-584 function RedrawChoices(typ){ Link Here
578
		<tr> \
578
		<tr> \
579
		<td>22 Målgruppe / Intelektuelt nivå</td> \
579
		<td>22 Målgruppe / Intelektuelt nivå</td> \
580
		<td> \
580
		<td> \
581
		<select name="f22" id="f22" size="1"> \
581
        <select name="f22" id="f22"> \
582
	[% IF ( f22 ) %] \
582
	[% IF ( f22 ) %] \
583
		<option value=" " selected="selected">^ Ikke angitt</option> \
583
		<option value=" " selected="selected">^ Ikke angitt</option> \
584
		[% ELSE %] \
584
		[% ELSE %] \
Lines 689-695 function RedrawChoices(typ){ Link Here
689
		<tr> \
689
		<tr> \
690
				<td>23 Materialform</td> \
690
				<td>23 Materialform</td> \
691
				<td> \
691
				<td> \
692
				<select name="f23" id="f23" size="1"> \
692
       <select name="f23" id="f23"> \
693
	[% IF ( f23 ) %] \
693
	[% IF ( f23 ) %] \
694
		<option value=" " selected="selected">^ Ikke angitt</option> \
694
		<option value=" " selected="selected">^ Ikke angitt</option> \
695
		[% ELSE %] \
695
		[% ELSE %] \
Lines 725-731 function RedrawChoices(typ){ Link Here
725
		<tr> \
725
		<tr> \
726
				<td>24 Innhold</td> \
726
				<td>24 Innhold</td> \
727
				<td> \
727
				<td> \
728
				<select name="f24" id="f24" size="1"> \
728
       <select name="f24" id="f24"> \
729
	[% IF ( f24 ) %] \
729
	[% IF ( f24 ) %] \
730
		<option value=" " selected="selected">^ Ikke angitt</option> \
730
		<option value=" " selected="selected">^ Ikke angitt</option> \
731
		[% ELSE %] \
731
		[% ELSE %] \
Lines 831-837 function RedrawChoices(typ){ Link Here
831
		<tr> \
831
		<tr> \
832
				<td>25 Innhold</td> \
832
				<td>25 Innhold</td> \
833
				<td> \
833
				<td> \
834
				<select name="f25" id="f25" size="1"> \
834
       <select name="f25" id="f25"> \
835
	[% IF ( f25 ) %] \
835
	[% IF ( f25 ) %] \
836
		<option value=" " selected="selected">^ Ikke angitt</option> \
836
		<option value=" " selected="selected">^ Ikke angitt</option> \
837
		[% ELSE %] \
837
		[% ELSE %] \
Lines 937-943 function RedrawChoices(typ){ Link Here
937
		<tr> \
937
		<tr> \
938
				<td>26 Innhold</td> \
938
				<td>26 Innhold</td> \
939
				<td> \
939
				<td> \
940
				<select name="f26" id="f26" size="1"> \
940
       <select name="f26" id="f26"> \
941
	[% IF ( f26 ) %] \
941
	[% IF ( f26 ) %] \
942
		<option value=" " selected="selected">^ Ikke angitt</option> \
942
		<option value=" " selected="selected">^ Ikke angitt</option> \
943
		[% ELSE %] \
943
		[% ELSE %] \
Lines 1043-1049 function RedrawChoices(typ){ Link Here
1043
		<tr> \
1043
		<tr> \
1044
				<td>27 Innhold</td> \
1044
				<td>27 Innhold</td> \
1045
				<td> \
1045
				<td> \
1046
				<select name="f27" id="f27" size="1"> \
1046
       <select name="f27" id="f27"> \
1047
	[% IF ( f27 ) %] \
1047
	[% IF ( f27 ) %] \
1048
		<option value=" " selected="selected">^ Ikke angitt</option> \
1048
		<option value=" " selected="selected">^ Ikke angitt</option> \
1049
		[% ELSE %] \
1049
		[% ELSE %] \
Lines 1149-1155 function RedrawChoices(typ){ Link Here
1149
		<tr> \
1149
		<tr> \
1150
				<td>28 Offentlig publikasjon</td> \
1150
				<td>28 Offentlig publikasjon</td> \
1151
				<td> \
1151
				<td> \
1152
				<select name="f28" id="f28" size="1"> \
1152
       <select name="f28" id="f28"> \
1153
	[% IF ( f28 ) %] \
1153
	[% IF ( f28 ) %] \
1154
		<option value=" " selected="selected">^ Ikke angitt</option> \
1154
		<option value=" " selected="selected">^ Ikke angitt</option> \
1155
		[% ELSE %] \
1155
		[% ELSE %] \
Lines 1190-1196 function RedrawChoices(typ){ Link Here
1190
		<tr> \
1190
		<tr> \
1191
				<td>29 Konferanse</td> \
1191
				<td>29 Konferanse</td> \
1192
				<td> \
1192
				<td> \
1193
				<select name="f29" id="f29" size="1"> \
1193
       <select name="f29" id="f29"> \
1194
	[% IF ( f29 ) %] \
1194
	[% IF ( f29 ) %] \
1195
		<option value=" " selected="selected">^ Ikke angitt</option> \
1195
		<option value=" " selected="selected">^ Ikke angitt</option> \
1196
		[% ELSE %] \
1196
		[% ELSE %] \
Lines 1211-1217 function RedrawChoices(typ){ Link Here
1211
		<tr> \
1211
		<tr> \
1212
				<td>30 Festskrift</td> \
1212
				<td>30 Festskrift</td> \
1213
				<td> \
1213
				<td> \
1214
				<select name="f30" id="f30" size="1"> \
1214
       <select name="f30" id="f30"> \
1215
	[% IF ( f30 ) %] \
1215
	[% IF ( f30 ) %] \
1216
		<option value=" " selected="selected">^ Ikke angitt</option> \
1216
		<option value=" " selected="selected">^ Ikke angitt</option> \
1217
		[% ELSE %] \
1217
		[% ELSE %] \
Lines 1242-1248 function RedrawChoices(typ){ Link Here
1242
		<tr> \
1242
		<tr> \
1243
				<td>31 Register</td> \
1243
				<td>31 Register</td> \
1244
				<td> \
1244
				<td> \
1245
				<select name="f31" id="f31" size="1"> \
1245
       <select name="f31" id="f31"> \
1246
	[% IF ( f31 ) %] \
1246
	[% IF ( f31 ) %] \
1247
		<option value=" " selected="selected">^ Ikke angitt</option> \
1247
		<option value=" " selected="selected">^ Ikke angitt</option> \
1248
		[% ELSE %] \
1248
		[% ELSE %] \
Lines 1268-1274 function RedrawChoices(typ){ Link Here
1268
		<tr> \
1268
		<tr> \
1269
				<td>33 Litterær form / genre</td> \
1269
				<td>33 Litterær form / genre</td> \
1270
				<td> \
1270
				<td> \
1271
				<select name="f33" id="f33" size="1"> \
1271
       <select name="f33" id="f33"> \
1272
  [% IF ( f33 ) %] \
1272
  [% IF ( f33 ) %] \
1273
		<option value=" " selected="selected">^ Ikke angitt</option> \
1273
		<option value=" " selected="selected">^ Ikke angitt</option> \
1274
		[% ELSE %] \
1274
		[% ELSE %] \
Lines 1329-1335 function RedrawChoices(typ){ Link Here
1329
		<tr> \
1329
		<tr> \
1330
		<td>34 Biografi</td> \
1330
		<td>34 Biografi</td> \
1331
		<td> \
1331
		<td> \
1332
		<select name="f34" id="f34" size="1"> \
1332
        <select name="f34" id="f34"> \
1333
	[% IF ( f34 ) %] \
1333
	[% IF ( f34 ) %] \
1334
		<option value=" " selected="selected">^ Ikke angitt</option> \
1334
		<option value=" " selected="selected">^ Ikke angitt</option> \
1335
		[% ELSE %] \
1335
		[% ELSE %] \
Lines 1374-1380 function RedrawChoices(typ){ Link Here
1374
		<tr> \
1374
		<tr> \
1375
		 <td>18 Periodisitet</td> \
1375
		 <td>18 Periodisitet</td> \
1376
		 <td> \
1376
		 <td> \
1377
		 <select name="f18" id="f18" size="1"> \
1377
        <select name="f18" id="f18"> \
1378
	[% IF ( f18 ) %] \
1378
	[% IF ( f18 ) %] \
1379
		<option value=" " selected="selected">^ Ikke angitt</option> \
1379
		<option value=" " selected="selected">^ Ikke angitt</option> \
1380
		[% ELSE %] \
1380
		[% ELSE %] \
Lines 1475-1481 function RedrawChoices(typ){ Link Here
1475
		 <tr> \
1475
		 <tr> \
1476
		 <td>19 Regularitet</td> \
1476
		 <td>19 Regularitet</td> \
1477
		 <td> \
1477
		 <td> \
1478
		 <select name="f19" id="f19" size="1"> \
1478
        <select name="f19" id="f19"> \
1479
	[% IF ( f19 ) %] \
1479
	[% IF ( f19 ) %] \
1480
		<option value=" " selected="selected">^ Ikke angitt</option> \
1480
		<option value=" " selected="selected">^ Ikke angitt</option> \
1481
		[% ELSE %] \
1481
		[% ELSE %] \
Lines 1506-1512 function RedrawChoices(typ){ Link Here
1506
		 <tr> \
1506
		 <tr> \
1507
		 <td>20 ISSN-senter</td> \
1507
		 <td>20 ISSN-senter</td> \
1508
		 <td> \
1508
		 <td> \
1509
		 <select name="f20" id="f20" size="1"> \
1509
        <select name="f20" id="f20"> \
1510
	[% IF ( f20 ) %] \
1510
	[% IF ( f20 ) %] \
1511
		<option value=" " selected="selected">^ Ikke angitt</option> \
1511
		<option value=" " selected="selected">^ Ikke angitt</option> \
1512
		[% ELSE %] \
1512
		[% ELSE %] \
Lines 1582-1588 function RedrawChoices(typ){ Link Here
1582
		 <tr> \
1582
		 <tr> \
1583
		 <td>21 Type periodikum</td> \
1583
		 <td>21 Type periodikum</td> \
1584
		 <td> \
1584
		 <td> \
1585
		 <select name="f21" id="f21" size="1"> \
1585
        <select name="f21" id="f21"> \
1586
	[% IF ( f21 ) %] \
1586
	[% IF ( f21 ) %] \
1587
		<option value=" " selected="selected">^ Ikke angitt</option> \
1587
		<option value=" " selected="selected">^ Ikke angitt</option> \
1588
		[% ELSE %] \
1588
		[% ELSE %] \
Lines 1618-1624 function RedrawChoices(typ){ Link Here
1618
		 <tr> \
1618
		 <tr> \
1619
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
1619
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
1620
		 <td> \
1620
		 <td> \
1621
		 <select name="f22" id="f22" size="1"> \
1621
        <select name="f22" id="f22"> \
1622
	[% IF ( f22 ) %] \
1622
	[% IF ( f22 ) %] \
1623
		<option value=" " selected="selected">^ Ikke angitt</option> \
1623
		<option value=" " selected="selected">^ Ikke angitt</option> \
1624
		[% ELSE %] \
1624
		[% ELSE %] \
Lines 1729-1735 function RedrawChoices(typ){ Link Here
1729
		 <tr> \
1729
		 <tr> \
1730
		 <td>23 Materialform</td> \
1730
		 <td>23 Materialform</td> \
1731
		 <td> \
1731
		 <td> \
1732
		 <select name="f23" id="f23" size="1"> \
1732
        <select name="f23" id="f23"> \
1733
	[% IF ( f23 ) %] \
1733
	[% IF ( f23 ) %] \
1734
		<option value=" " selected="selected">^ Ikke angitt</option> \
1734
		<option value=" " selected="selected">^ Ikke angitt</option> \
1735
		[% ELSE %] \
1735
		[% ELSE %] \
Lines 1765-1771 function RedrawChoices(typ){ Link Here
1765
		 <tr> \
1765
		 <tr> \
1766
		 <td>24 Innhold</td> \
1766
		 <td>24 Innhold</td> \
1767
		 <td> \
1767
		 <td> \
1768
		 <select name="f24" id="f24" size="1"> \
1768
        <select name="f24" id="f24"> \
1769
	[% IF ( f24 ) %] \
1769
	[% IF ( f24 ) %] \
1770
		<option value=" " selected="selected">^ Ikke angitt</option> \
1770
		<option value=" " selected="selected">^ Ikke angitt</option> \
1771
		[% ELSE %] \
1771
		[% ELSE %] \
Lines 1871-1877 function RedrawChoices(typ){ Link Here
1871
		 <tr> \
1871
		 <tr> \
1872
		 <td>25 Innhold</td> \
1872
		 <td>25 Innhold</td> \
1873
		 <td> \
1873
		 <td> \
1874
		 <select name="f25" id="f25" size="1"> \
1874
        <select name="f25" id="f25"> \
1875
	[% IF ( f25 ) %] \
1875
	[% IF ( f25 ) %] \
1876
		<option value=" " selected="selected">^ Ikke angitt</option> \
1876
		<option value=" " selected="selected">^ Ikke angitt</option> \
1877
		[% ELSE %] \
1877
		[% ELSE %] \
Lines 1977-1983 function RedrawChoices(typ){ Link Here
1977
		 <tr> \
1977
		 <tr> \
1978
		 <td>26 Innhold</td> \
1978
		 <td>26 Innhold</td> \
1979
		 <td> \
1979
		 <td> \
1980
		 <select name="f26" id="f26" size="1"> \
1980
        <select name="f26" id="f26"> \
1981
	[% IF ( f26 ) %] \
1981
	[% IF ( f26 ) %] \
1982
		<option value=" " selected="selected">^ Ikke angitt</option> \
1982
		<option value=" " selected="selected">^ Ikke angitt</option> \
1983
		[% ELSE %] \
1983
		[% ELSE %] \
Lines 2083-2089 function RedrawChoices(typ){ Link Here
2083
		 <tr> \
2083
		 <tr> \
2084
		 <td>27 Innhold</td> \
2084
		 <td>27 Innhold</td> \
2085
		 <td> \
2085
		 <td> \
2086
		 <select name="f27" id="f27" size="1"> \
2086
        <select name="f27" id="f27"> \
2087
	[% IF ( f27 ) %] \
2087
	[% IF ( f27 ) %] \
2088
		<option value=" " selected="selected">^ Ikke angitt</option> \
2088
		<option value=" " selected="selected">^ Ikke angitt</option> \
2089
		[% ELSE %] \
2089
		[% ELSE %] \
Lines 2189-2195 function RedrawChoices(typ){ Link Here
2189
		 <tr> \
2189
		 <tr> \
2190
		 <td>28 Offentlig publikasjon</td> \
2190
		 <td>28 Offentlig publikasjon</td> \
2191
		 <td> \
2191
		 <td> \
2192
		 <select name="f28" id="f28" size="1"> \
2192
        <select name="f28" id="f28"> \
2193
	[% IF ( f28 ) %] \
2193
	[% IF ( f28 ) %] \
2194
		<option value=" " selected="selected">^ Ikke angitt</option> \
2194
		<option value=" " selected="selected">^ Ikke angitt</option> \
2195
		[% ELSE %] \
2195
		[% ELSE %] \
Lines 2230-2236 function RedrawChoices(typ){ Link Here
2230
		 <tr> \
2230
		 <tr> \
2231
		 <td>29 Konferanse</td> \
2231
		 <td>29 Konferanse</td> \
2232
		 <td> \
2232
		 <td> \
2233
		 <select name="f29" id="f29" size="1"> \
2233
        <select name="f29" id="f29"> \
2234
	[% IF ( f29 ) %] \
2234
	[% IF ( f29 ) %] \
2235
		<option value=" " selected="selected">^ Ikke angitt</option> \
2235
		<option value=" " selected="selected">^ Ikke angitt</option> \
2236
		[% ELSE %] \
2236
		[% ELSE %] \
Lines 2256-2262 function RedrawChoices(typ){ Link Here
2256
		 <tr> \
2256
		 <tr> \
2257
		 <td>31 Register</td> \
2257
		 <td>31 Register</td> \
2258
		 <td> \
2258
		 <td> \
2259
		 <select name="f31" id="f31" size="1"> \
2259
        <select name="f31" id="f31"> \
2260
	[% IF ( f31 ) %] \
2260
	[% IF ( f31 ) %] \
2261
		<option value=" " selected="selected">^ Ikke angitt</option> \
2261
		<option value=" " selected="selected">^ Ikke angitt</option> \
2262
		[% ELSE %] \
2262
		[% ELSE %] \
Lines 2302-2308 function RedrawChoices(typ){ Link Here
2302
		 <tr> \
2302
		 <tr> \
2303
		 <td>33 Tittelens originale alfabet eller skriftsystem</td> \
2303
		 <td>33 Tittelens originale alfabet eller skriftsystem</td> \
2304
		 <td> \
2304
		 <td> \
2305
		 <select name="f33" id="f33" size="1"> \
2305
        <select name="f33" id="f33"> \
2306
	[% IF ( f33 ) %] \
2306
	[% IF ( f33 ) %] \
2307
		<option value=" " selected="selected">^ Ikke angitt</option> \
2307
		<option value=" " selected="selected">^ Ikke angitt</option> \
2308
		[% ELSE %] \
2308
		[% ELSE %] \
Lines 2405-2411 function RedrawChoices(typ){ Link Here
2405
		 <tr> \
2405
		 <tr> \
2406
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
2406
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
2407
		 <td> \
2407
		 <td> \
2408
		 <select name="f22" id="f22" size="1"> \
2408
        <select name="f22" id="f22"> \
2409
	[% IF ( f22 ) %] \
2409
	[% IF ( f22 ) %] \
2410
		<option value=" " selected="selected">^ Ikke angitt</option> \
2410
		<option value=" " selected="selected">^ Ikke angitt</option> \
2411
		[% ELSE %] \
2411
		[% ELSE %] \
Lines 2488-2494 function RedrawChoices(typ){ Link Here
2488
		 <tr> \
2488
		 <tr> \
2489
		 <td>26 Type data</td> \
2489
		 <td>26 Type data</td> \
2490
		 <td> \
2490
		 <td> \
2491
		 <select name="f26" id="f26" size="1"> \
2491
        <select name="f26" id="f26"> \
2492
	[% IF ( f26 ) %] \
2492
	[% IF ( f26 ) %] \
2493
		<option value=" " selected="selected">^ Ikke angitt</option> \
2493
		<option value=" " selected="selected">^ Ikke angitt</option> \
2494
		[% ELSE %] \
2494
		[% ELSE %] \
Lines 2569-2575 function RedrawChoices(typ){ Link Here
2569
		 <tr> \
2569
		 <tr> \
2570
		 <td>28 Offentlig publikasjon</td> \
2570
		 <td>28 Offentlig publikasjon</td> \
2571
		 <td> \
2571
		 <td> \
2572
		 <select name="f28" id="f28" size="1"> \
2572
        <select name="f28" id="f28"> \
2573
	[% IF ( f28 ) %] \
2573
	[% IF ( f28 ) %] \
2574
		<option value=" " selected="selected">^ Ikke angitt</option> \
2574
		<option value=" " selected="selected">^ Ikke angitt</option> \
2575
		[% ELSE %] \
2575
		[% ELSE %] \
Lines 2630-2636 function RedrawChoices(typ){ Link Here
2630
		 <tr> \
2630
		 <tr> \
2631
		 <td>20 Format</td> \
2631
		 <td>20 Format</td> \
2632
		 <td> \
2632
		 <td> \
2633
		 <select name="f20" id="f20" size="1"> \
2633
        <select name="f20" id="f20"> \
2634
	[% IF ( f20 ) %] \
2634
	[% IF ( f20 ) %] \
2635
		<option value=" " selected="selected">^ Ikke angitt</option> \
2635
		<option value=" " selected="selected">^ Ikke angitt</option> \
2636
		[% ELSE %] \
2636
		[% ELSE %] \
Lines 2691-2697 function RedrawChoices(typ){ Link Here
2691
		 <tr> \
2691
		 <tr> \
2692
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
2692
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
2693
		 <td> \
2693
		 <td> \
2694
		 <select name="f22" id="f22" size="1"> \
2694
        <select name="f22" id="f22"> \
2695
	[% IF ( f22 ) %] \
2695
	[% IF ( f22 ) %] \
2696
		<option value=" " selected="selected">^ Ikke angitt</option> \
2696
		<option value=" " selected="selected">^ Ikke angitt</option> \
2697
		[% ELSE %] \
2697
		[% ELSE %] \
Lines 2767-2773 function RedrawChoices(typ){ Link Here
2767
		 <tr> \
2767
		 <tr> \
2768
		 <td>23 Materialform</td> \
2768
		 <td>23 Materialform</td> \
2769
		 <td> \
2769
		 <td> \
2770
		 <select name="f23" id="f23" size="1"> \
2770
        <select name="f23" id="f23"> \
2771
	[% IF ( f23 ) %] \
2771
	[% IF ( f23 ) %] \
2772
		<option value=" " selected="selected">^ Ikke angitt</option> \
2772
		<option value=" " selected="selected">^ Ikke angitt</option> \
2773
		[% ELSE %] \
2773
		[% ELSE %] \
Lines 2803-2809 function RedrawChoices(typ){ Link Here
2803
		 <tr> \
2803
		 <tr> \
2804
		 <td>24 Ledsagende materiale</td> \
2804
		 <td>24 Ledsagende materiale</td> \
2805
		 <td> \
2805
		 <td> \
2806
		 <select name="f24" id="f24" size="1"> \
2806
        <select name="f24" id="f24"> \
2807
	[% IF ( f24 ) %] \
2807
	[% IF ( f24 ) %] \
2808
		<option value=" " selected="selected">^ Ikke angitt</option> \
2808
		<option value=" " selected="selected">^ Ikke angitt</option> \
2809
		[% ELSE %] \
2809
		[% ELSE %] \
Lines 2884-2890 function RedrawChoices(typ){ Link Here
2884
		 <tr> \
2884
		 <tr> \
2885
		 <td>25 Ledsagende materiale</td> \
2885
		 <td>25 Ledsagende materiale</td> \
2886
		 <td> \
2886
		 <td> \
2887
		 <select name="f25" id="f25" size="1"> \
2887
        <select name="f25" id="f25"> \
2888
	[% IF ( f25 ) %] \
2888
	[% IF ( f25 ) %] \
2889
		<option value=" " selected="selected">^ Ikke angitt</option> \
2889
		<option value=" " selected="selected">^ Ikke angitt</option> \
2890
		[% ELSE %] \
2890
		[% ELSE %] \
Lines 2965-2971 function RedrawChoices(typ){ Link Here
2965
		 <tr> \
2965
		 <tr> \
2966
		 <td>26 Ledsagende materiale</td> \
2966
		 <td>26 Ledsagende materiale</td> \
2967
		 <td> \
2967
		 <td> \
2968
		 <select name="f26" id="f26" size="1"> \
2968
        <select name="f26" id="f26"> \
2969
	[% IF ( f26 ) %] \
2969
	[% IF ( f26 ) %] \
2970
		<option value=" " selected="selected">^ Ikke angitt</option> \
2970
		<option value=" " selected="selected">^ Ikke angitt</option> \
2971
		[% ELSE %] \
2971
		[% ELSE %] \
Lines 3046-3052 function RedrawChoices(typ){ Link Here
3046
		 <tr> \
3046
		 <tr> \
3047
		 <td>27 Ledsagende materiale</td> \
3047
		 <td>27 Ledsagende materiale</td> \
3048
		 <td> \
3048
		 <td> \
3049
		 <select name="f27" id="f27" size="1"> \
3049
        <select name="f27" id="f27"> \
3050
	[% IF ( f27 ) %] \
3050
	[% IF ( f27 ) %] \
3051
		<option value=" " selected="selected">^ Ikke angitt</option> \
3051
		<option value=" " selected="selected">^ Ikke angitt</option> \
3052
		[% ELSE %] \
3052
		[% ELSE %] \
Lines 3127-3133 function RedrawChoices(typ){ Link Here
3127
		 <tr> \
3127
		 <tr> \
3128
		 <td>28 Ledsagende materiale</td> \
3128
		 <td>28 Ledsagende materiale</td> \
3129
		 <td> \
3129
		 <td> \
3130
		 <select name="f28" id="f28" size="1"> \
3130
        <select name="f28" id="f28"> \
3131
	[% IF ( f28 ) %] \
3131
	[% IF ( f28 ) %] \
3132
		<option value=" " selected="selected">^ Ikke angitt</option> \
3132
		<option value=" " selected="selected">^ Ikke angitt</option> \
3133
		[% ELSE %] \
3133
		[% ELSE %] \
Lines 3208-3214 function RedrawChoices(typ){ Link Here
3208
		 <tr> \
3208
		 <tr> \
3209
		 <td>29 Ledsagende materiale</td> \
3209
		 <td>29 Ledsagende materiale</td> \
3210
		 <td> \
3210
		 <td> \
3211
		 <select name="f29" id="f29" size="1"> \
3211
        <select name="f29" id="f29"> \
3212
	[% IF ( f29 ) %] \
3212
	[% IF ( f29 ) %] \
3213
		<option value=" " selected="selected">^ Ikke angitt</option> \
3213
		<option value=" " selected="selected">^ Ikke angitt</option> \
3214
		[% ELSE %] \
3214
		[% ELSE %] \
Lines 3289-3295 function RedrawChoices(typ){ Link Here
3289
		 <tr> \
3289
		 <tr> \
3290
		 <td>30 Innhold på lydopptak</td> \
3290
		 <td>30 Innhold på lydopptak</td> \
3291
		 <td> \
3291
		 <td> \
3292
		 <select name="f30" id="f30" size="1"> \
3292
        <select name="f30" id="f30"> \
3293
	[% IF ( f30 ) %] \
3293
	[% IF ( f30 ) %] \
3294
		<option value=" " selected="selected">^ Ikke angitt</option> \
3294
		<option value=" " selected="selected">^ Ikke angitt</option> \
3295
		[% ELSE %] \
3295
		[% ELSE %] \
Lines 3395-3401 function RedrawChoices(typ){ Link Here
3395
		 <tr> \
3395
		 <tr> \
3396
		 <td>31 Innhold på lydopptak</td> \
3396
		 <td>31 Innhold på lydopptak</td> \
3397
		 <td> \
3397
		 <td> \
3398
		 <select name="f31" id="f31" size="1"> \
3398
        <select name="f31" id="f31"> \
3399
	[% IF ( f31 ) %] \
3399
	[% IF ( f31 ) %] \
3400
		<option value=" " selected="selected">^ Ikke angitt</option> \
3400
		<option value=" " selected="selected">^ Ikke angitt</option> \
3401
		[% ELSE %] \
3401
		[% ELSE %] \
Lines 3525-3531 function RedrawChoices(typ){ Link Here
3525
		 <tr> \
3525
		 <tr> \
3526
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
3526
		 <td>22 Målgruppe / Intellektuelt nivå</td> \
3527
		 <td> \
3527
		 <td> \
3528
		 <select name="f22" id="f22" size="1"> \
3528
        <select name="f22" id="f22"> \
3529
	[% IF ( f22 ) %] \
3529
	[% IF ( f22 ) %] \
3530
		<option value=" " selected="selected">^ Ikke angitt</option> \
3530
		<option value=" " selected="selected">^ Ikke angitt</option> \
3531
		[% ELSE %] \
3531
		[% ELSE %] \
Lines 3586-3592 function RedrawChoices(typ){ Link Here
3586
		 <tr> \
3586
		 <tr> \
3587
		 <td>23 Medfølgende materiale</td> \
3587
		 <td>23 Medfølgende materiale</td> \
3588
		 <td> \
3588
		 <td> \
3589
		 <select name="f23" id="f23" size="1"> \
3589
        <select name="f23" id="f23"> \
3590
	[% IF ( f23 ) %] \
3590
	[% IF ( f23 ) %] \
3591
		<option value=" " selected="selected">^ Ikke angitt</option> \
3591
		<option value=" " selected="selected">^ Ikke angitt</option> \
3592
		[% ELSE %] \
3592
		[% ELSE %] \
Lines 3637-3643 function RedrawChoices(typ){ Link Here
3637
		 <tr> \
3637
		 <tr> \
3638
		 <td>24 Medfølgende materiale</td> \
3638
		 <td>24 Medfølgende materiale</td> \
3639
		 <td> \
3639
		 <td> \
3640
		 <select name="f24" id="f24" size="1"> \
3640
        <select name="f24" id="f24"> \
3641
	[% IF ( f24 ) %] \
3641
	[% IF ( f24 ) %] \
3642
		<option value=" " selected="selected">^ Ikke angitt</option> \
3642
		<option value=" " selected="selected">^ Ikke angitt</option> \
3643
		[% ELSE %] \
3643
		[% ELSE %] \
Lines 3688-3694 function RedrawChoices(typ){ Link Here
3688
		 <tr> \
3688
		 <tr> \
3689
		 <td>25 Medfølgende materiale</td> \
3689
		 <td>25 Medfølgende materiale</td> \
3690
		 <td> \
3690
		 <td> \
3691
		 <select name="f25" id="f25" size="1"> \
3691
        <select name="f25" id="f25"> \
3692
	[% IF ( f25 ) %] \
3692
	[% IF ( f25 ) %] \
3693
		<option value=" " selected="selected">^ Ikke angitt</option> \
3693
		<option value=" " selected="selected">^ Ikke angitt</option> \
3694
		[% ELSE %] \
3694
		[% ELSE %] \
Lines 3739-3745 function RedrawChoices(typ){ Link Here
3739
		 <tr> \
3739
		 <tr> \
3740
		 <td>26 Medfølgende materiale</td> \
3740
		 <td>26 Medfølgende materiale</td> \
3741
		 <td> \
3741
		 <td> \
3742
		 <select name="f26" id="f26" size="1"> \
3742
        <select name="f26" id="f26"> \
3743
	[% IF ( f26 ) %] \
3743
	[% IF ( f26 ) %] \
3744
		<option value=" " selected="selected">^ Ikke angitt</option> \
3744
		<option value=" " selected="selected">^ Ikke angitt</option> \
3745
		[% ELSE %] \
3745
		[% ELSE %] \
Lines 3790-3796 function RedrawChoices(typ){ Link Here
3790
		 <tr> \
3790
		 <tr> \
3791
		 <td>27 Medfølgende materiale</td> \
3791
		 <td>27 Medfølgende materiale</td> \
3792
		 <td> \
3792
		 <td> \
3793
		 <select name="f27" id="f27" size="1"> \
3793
        <select name="f27" id="f27"> \
3794
	[% IF ( f27 ) %] \
3794
	[% IF ( f27 ) %] \
3795
		<option value=" " selected="selected">^ Ikke angitt</option> \
3795
		<option value=" " selected="selected">^ Ikke angitt</option> \
3796
		[% ELSE %] \
3796
		[% ELSE %] \
Lines 3841-3847 function RedrawChoices(typ){ Link Here
3841
		 <tr> \
3841
		 <tr> \
3842
		 <td>28 Offentlig publikasjon</td> \
3842
		 <td>28 Offentlig publikasjon</td> \
3843
		 <td> \
3843
		 <td> \
3844
		 <select name="f28" id="f28" size="1"> \
3844
        <select name="f28" id="f28"> \
3845
	[% IF ( f28 ) %] \
3845
	[% IF ( f28 ) %] \
3846
		<option value=" " selected="selected">^ Ikke angitt</option> \
3846
		<option value=" " selected="selected">^ Ikke angitt</option> \
3847
		[% ELSE %] \
3847
		[% ELSE %] \
Lines 3891-3897 function RedrawChoices(typ){ Link Here
3891
		 <tr> \
3891
		 <tr> \
3892
		 <td>34 Teknikk</td> \
3892
		 <td>34 Teknikk</td> \
3893
		 <td> \
3893
		 <td> \
3894
		 <select name="f34" id="f34" size="1"> \
3894
        <select name="f34" id="f34"> \
3895
	[% IF ( f34 ) %] \
3895
	[% IF ( f34 ) %] \
3896
		<option value=" " selected="selected">^ Ikke angitt</option> \
3896
		<option value=" " selected="selected">^ Ikke angitt</option> \
3897
		[% ELSE %] \
3897
		[% ELSE %] \
Lines 3931-3937 function RedrawChoices(typ){ Link Here
3931
		<tr> \
3931
		<tr> \
3932
		 <td>18 Relieff</td> \
3932
		 <td>18 Relieff</td> \
3933
		 <td> \
3933
		 <td> \
3934
		 <select name="f18" id="f18" size="1"> \
3934
        <select name="f18" id="f18"> \
3935
	[% IF ( f18 ) %] \
3935
	[% IF ( f18 ) %] \
3936
		<option value=" " selected="selected">^ Ikke angitt</option> \
3936
		<option value=" " selected="selected">^ Ikke angitt</option> \
3937
		[% ELSE %] \
3937
		[% ELSE %] \
Lines 4002-4008 function RedrawChoices(typ){ Link Here
4002
		 <tr> \
4002
		 <tr> \
4003
		 <td>19 Relieff</td> \
4003
		 <td>19 Relieff</td> \
4004
		 <td> \
4004
		 <td> \
4005
		 <select name="f19" id="f19" size="1"> \
4005
        <select name="f19" id="f19"> \
4006
	[% IF ( f19 ) %] \
4006
	[% IF ( f19 ) %] \
4007
		<option value=" " selected="selected">^ Ikke angitt</option> \
4007
		<option value=" " selected="selected">^ Ikke angitt</option> \
4008
		[% ELSE %] \
4008
		[% ELSE %] \
Lines 4073-4079 function RedrawChoices(typ){ Link Here
4073
		 <tr> \
4073
		 <tr> \
4074
		 <td>20 Relieff</td> \
4074
		 <td>20 Relieff</td> \
4075
		 <td> \
4075
		 <td> \
4076
		 <select name="f20" id="f20" size="1"> \
4076
        <select name="f20" id="f20"> \
4077
	[% IF ( f20 ) %] \
4077
	[% IF ( f20 ) %] \
4078
		<option value=" " selected="selected">^ Ikke angitt</option> \
4078
		<option value=" " selected="selected">^ Ikke angitt</option> \
4079
		[% ELSE %] \
4079
		[% ELSE %] \
Lines 4144-4150 function RedrawChoices(typ){ Link Here
4144
		 <tr> \
4144
		 <tr> \
4145
		 <td>21 Relieff</td> \
4145
		 <td>21 Relieff</td> \
4146
		 <td> \
4146
		 <td> \
4147
		 <select name="f21" id="f21" size="1"> \
4147
        <select name="f21" id="f21"> \
4148
	[% IF ( f21 ) %] \
4148
	[% IF ( f21 ) %] \
4149
		<option value=" " selected="selected">^ Ikke angitt</option> \
4149
		<option value=" " selected="selected">^ Ikke angitt</option> \
4150
		[% ELSE %] \
4150
		[% ELSE %] \
Lines 4215-4221 function RedrawChoices(typ){ Link Here
4215
		 <tr> \
4215
		 <tr> \
4216
		 <td>22 Projeksjon</td> \
4216
		 <td>22 Projeksjon</td> \
4217
		 <td> \
4217
		 <td> \
4218
		 <select name="f22" id="f22" size="1"> \
4218
        <select name="f22" id="f22"> \
4219
	[% IF ( f22 ) %] \
4219
	[% IF ( f22 ) %] \
4220
		<option value=" " selected="selected">^ Ikke angitt</option> \
4220
		<option value=" " selected="selected">^ Ikke angitt</option> \
4221
		[% ELSE %] \
4221
		[% ELSE %] \
Lines 4246-4252 function RedrawChoices(typ){ Link Here
4246
		 <tr> \
4246
		 <tr> \
4247
		 <td>23 Projeksjon</td> \
4247
		 <td>23 Projeksjon</td> \
4248
		 <td> \
4248
		 <td> \
4249
		 <select name="f23" id="f23" size="1"> \
4249
        <select name="f23" id="f23"> \
4250
	[% IF ( f23 ) %] \
4250
	[% IF ( f23 ) %] \
4251
		<option value=" " selected="selected">^ Ikke angitt</option> \
4251
		<option value=" " selected="selected">^ Ikke angitt</option> \
4252
		[% ELSE %] \
4252
		[% ELSE %] \
Lines 4285-4291 function RedrawChoices(typ){ Link Here
4285
		 <tr> \
4285
		 <tr> \
4286
		 <td>28 Offentlig publikasjon</td> \
4286
		 <td>28 Offentlig publikasjon</td> \
4287
		 <td> \
4287
		 <td> \
4288
		 <select name="f28" id="f28" size="1"> \
4288
        <select name="f28" id="f28"> \
4289
	[% IF ( f28 ) %] \
4289
	[% IF ( f28 ) %] \
4290
		<option value=" " selected="selected">^ Ikke angitt</option> \
4290
		<option value=" " selected="selected">^ Ikke angitt</option> \
4291
		[% ELSE %] \
4291
		[% ELSE %] \
Lines 4332-4338 function RedrawChoices(typ){ Link Here
4332
		 <tr> \
4332
		 <tr> \
4333
		 <td>31 Register</td> \
4333
		 <td>31 Register</td> \
4334
	 <td> \
4334
	 <td> \
4335
		 <select name="f31" id="f31" size="1"> \
4335
        <select name="f31" id="f31"> \
4336
	[% IF ( f31 ) %] \
4336
	[% IF ( f31 ) %] \
4337
		<option value=" " selected="selected">^ Ikke angitt</option> \
4337
		<option value=" " selected="selected">^ Ikke angitt</option> \
4338
		[% ELSE %] \
4338
		[% ELSE %] \
Lines 4358-4364 function RedrawChoices(typ){ Link Here
4358
		 <tr> \
4358
		 <tr> \
4359
		 <td>33 Spesielle formatkarakteristika</td> \
4359
		 <td>33 Spesielle formatkarakteristika</td> \
4360
		 <td> \
4360
		 <td> \
4361
		 <select name="f33" id="f33" size="1"> \
4361
        <select name="f33" id="f33"> \
4362
	[% IF ( f33 ) %] \
4362
	[% IF ( f33 ) %] \
4363
		<option value=" " selected="selected">^ Ikke angitt</option> \
4363
		<option value=" " selected="selected">^ Ikke angitt</option> \
4364
		[% ELSE %] \
4364
		[% ELSE %] \
Lines 4409-4415 function RedrawChoices(typ){ Link Here
4409
		 <tr> \
4409
		 <tr> \
4410
		 <td>34 Spesielle formatkarakteristika</td> \
4410
		 <td>34 Spesielle formatkarakteristika</td> \
4411
		 <td> \
4411
		 <td> \
4412
		 <select name="f34" id="f34" size="1"> \
4412
        <select name="f34" id="f34"> \
4413
	[% IF ( f34 ) %] \
4413
	[% IF ( f34 ) %] \
4414
		<option value=" " selected="selected">^ Ikke angitt</option> \
4414
		<option value=" " selected="selected">^ Ikke angitt</option> \
4415
		[% ELSE %] \
4415
		[% ELSE %] \
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/normarc_leader.tt (-4 / +4 lines)
Lines 14-20 Link Here
14
	<tr>
14
	<tr>
15
		<td><label for="f5">05 Postens status</label></td>
15
		<td><label for="f5">05 Postens status</label></td>
16
		<td>
16
		<td>
17
			<select name="f5" id="f5" size="1">
17
            <select name="f5" id="f5">
18
			
18
			
19
			[% IF ( f5c ) %]
19
			[% IF ( f5c ) %]
20
				<option value="c" selected="selected">c Rettet post</option>
20
				<option value="c" selected="selected">c Rettet post</option>
Lines 46-52 Link Here
46
	<tr>
46
	<tr>
47
		<td><label for="f6">06 Materialtype</label></td>
47
		<td><label for="f6">06 Materialtype</label></td>
48
		<td>
48
		<td>
49
			<select name="f6" id="f6" size="1">
49
            <select name="f6" id="f6">
50
			
50
			
51
			[% IF ( f6a ) %]
51
			[% IF ( f6a ) %]
52
				<option value="a" selected="selected">a Tekstlig materiale</option>
52
				<option value="a" selected="selected">a Tekstlig materiale</option>
Lines 120-126 Link Here
120
	<tr>
120
	<tr>
121
		<td><label for="f7">07 Bibliografisk kategori</label></td>
121
		<td><label for="f7">07 Bibliografisk kategori</label></td>
122
		<td>
122
		<td>
123
			<select name="f7" id="f7" size="1">
123
            <select name="f7" id="f7">
124
			
124
			
125
				[% IF ( f7a ) %]
125
				[% IF ( f7a ) %]
126
					<option value="a" selected="selected">a Analytt til ikke-periodisk dokument</option>
126
					<option value="a" selected="selected">a Analytt til ikke-periodisk dokument</option>
Lines 163-169 Link Here
163
    <tr>
163
    <tr>
164
		<td><label for="f17">17 Beskrivelsesnivå</label></td>
164
		<td><label for="f17">17 Beskrivelsesnivå</label></td>
165
		<td>
165
		<td>
166
			<select name="f17" id="f17" size="1">
166
            <select name="f17" id="f17">
167
				[% IF ( f170 ) %]
167
				[% IF ( f170 ) %]
168
					<option value="0" selected="selected">0	Fullstendig beskrivelse</option>
168
					<option value="0" selected="selected">0	Fullstendig beskrivelse</option>
169
				[% ELSE %]
169
				[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_100.tt (-10 / +10 lines)
Lines 15-21 Link Here
15
    <tr>
15
    <tr>
16
        <td><label for="f2">Type of publication date: Publication dates 1 and 2</label></td>
16
        <td><label for="f2">Type of publication date: Publication dates 1 and 2</label></td>
17
        <td>
17
        <td>
18
            <select name="f2" id="f2" size="1">
18
            <select name="f2" id="f2">
19
            [% IF ( f2space ) %]
19
            [% IF ( f2space ) %]
20
                <option value=" " selected="selected">Non required value</option>
20
                <option value=" " selected="selected">Non required value</option>
21
            [% ELSE %]
21
            [% ELSE %]
Lines 109-115 year</option> Link Here
109
    <tr>
109
    <tr>
110
        <td><label for="f5">Target audience code</label></td>
110
        <td><label for="f5">Target audience code</label></td>
111
        <td>
111
        <td>
112
            <select name="f5" id="f5" size="1">
112
            <select name="f5" id="f5">
113
            [% IF ( f5pipe ) %]
113
            [% IF ( f5pipe ) %]
114
                <option value="|" selected="selected">|- Filling character</option>
114
                <option value="|" selected="selected">|- Filling character</option>
115
            [% ELSE %]
115
            [% ELSE %]
Lines 169-175 year</option> Link Here
169
    <tr>
169
    <tr>
170
        <td><label for="f6">Target audience code 2</label></td>
170
        <td><label for="f6">Target audience code 2</label></td>
171
        <td>
171
        <td>
172
            <select name="f6" id="f6" size="1">
172
            <select name="f6" id="f6">
173
            
173
            
174
            [% IF ( f6pipe ) %]
174
            [% IF ( f6pipe ) %]
175
            	<option value="|" selected="selected">|- Filling character</option>
175
            	<option value="|" selected="selected">|- Filling character</option>
Lines 229-235 year</option> Link Here
229
    <tr>
229
    <tr>
230
        <td><label for="f7">Target audience code 3</label></td>
230
        <td><label for="f7">Target audience code 3</label></td>
231
        <td>
231
        <td>
232
            <select name="f7" id="f7" size="1">
232
            <select name="f7" id="f7">
233
            [% IF ( f7pipe ) %]
233
            [% IF ( f7pipe ) %]
234
            	<option value="|" selected="selected">|- Filling character</option>
234
            	<option value="|" selected="selected">|- Filling character</option>
235
            [% ELSE %]
235
            [% ELSE %]
Lines 289-295 year</option> Link Here
289
    <tr>
289
    <tr>
290
        <td><label for="f8">Government publication</label></td>
290
        <td><label for="f8">Government publication</label></td>
291
        <td>
291
        <td>
292
            <select name="f8" id="f8" size="1">
292
            <select name="f8" id="f8">
293
            
293
            
294
            [% IF ( f8u ) %]
294
            [% IF ( f8u ) %]
295
            	<option value="u" selected="selected">u- unknown</option>
295
            	<option value="u" selected="selected">u- unknown</option>
Lines 371-377 level)</option> Link Here
371
    <tr>
371
    <tr>
372
        <td><label for="f9">Modified record code</label></td>
372
        <td><label for="f9">Modified record code</label></td>
373
        <td>
373
        <td>
374
            <select name="f9" id="f9" size="1">
374
            <select name="f9" id="f9">
375
            
375
            
376
            [% IF ( f90 ) %]
376
            [% IF ( f90 ) %]
377
                <option value="0" selected="selected">0- unmodified record</option>
377
                <option value="0" selected="selected">0- unmodified record</option>
Lines 396-402 level)</option> Link Here
396
    <tr>
396
    <tr>
397
        <td><label for="f11">Transliteration code</label></td>
397
        <td><label for="f11">Transliteration code</label></td>
398
        <td>
398
        <td>
399
            <select name="f11" id="f11" size="1">
399
            <select name="f11" id="f11">
400
            
400
            
401
            [% IF ( f11a ) %]
401
            [% IF ( f11a ) %]
402
                <option value="a" selected="selected">a- ISO transliteration scheme</option>
402
                <option value="a" selected="selected">a- ISO transliteration scheme</option>
Lines 425-431 level)</option> Link Here
425
    <tr>
425
    <tr>
426
    <td><label for="f12">Character sets (mandatory) 1</label></td>
426
    <td><label for="f12">Character sets (mandatory) 1</label></td>
427
        <td>
427
        <td>
428
            <select name="f12" id="f12" size="1">
428
            <select name="f12" id="f12">
429
            
429
            
430
            [% IF ( f1201 ) %]
430
            [% IF ( f1201 ) %]
431
                <option value="01" selected="selected">01- ISO 646, IRV version (basic Latin set)</option>
431
                <option value="01" selected="selected">01- ISO 646, IRV version (basic Latin set)</option>
Lines 500-506 languages and obsolete typography) Link Here
500
    <tr>
500
    <tr>
501
    <td><label for="f13">Character sets (mandatory) 2</label></td>
501
    <td><label for="f13">Character sets (mandatory) 2</label></td>
502
        <td>
502
        <td>
503
            <select name="f13" id="f13" size="1">
503
            <select name="f13" id="f13">
504
            
504
            
505
            [% IF ( f13dblspace ) %]
505
            [% IF ( f13dblspace ) %]
506
                    <option value="  " selected="selected">non required value</option>
506
                    <option value="  " selected="selected">non required value</option>
Lines 585-591 languages and obsolete typography)</option> Link Here
585
    <tr>
585
    <tr>
586
    <td><label for="f15">Script of title</label></td>
586
    <td><label for="f15">Script of title</label></td>
587
    <td>
587
    <td>
588
    <select name="f15" id="f15" size="1">
588
    <select name="f15" id="f15">
589
            [% IF ( f15dblspace ) %]
589
            [% IF ( f15dblspace ) %]
590
                    <option value="  " selected="selected">Non required value</option>
590
                    <option value="  " selected="selected">Non required value</option>
591
            [% ELSE %]
591
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_100_authorities.tt (-6 / +6 lines)
Lines 15-21 Link Here
15
    <tr>
15
    <tr>
16
        <td><label for="f2">States of authority heading code</label></td>
16
        <td><label for="f2">States of authority heading code</label></td>
17
        <td>
17
        <td>
18
            <select name="f2" id="f2" size="1">
18
            <select name="f2" id="f2">
19
            [% IF ( f2a ) %]
19
            [% IF ( f2a ) %]
20
                <option value="a" selected="selected">a - established</option>
20
                <option value="a" selected="selected">a - established</option>
21
            [% ELSE %]
21
            [% ELSE %]
Lines 43-49 Link Here
43
    <tr>
43
    <tr>
44
        <td><label for="f4">Transliteration code</label></td>
44
        <td><label for="f4">Transliteration code</label></td>
45
        <td>
45
        <td>
46
            <select name="f4" id="f4" size="1">
46
            <select name="f4" id="f4">
47
47
48
            [% IF ( f4a ) %]
48
            [% IF ( f4a ) %]
49
                <option value="a" selected="selected">a- ISO transliteration scheme</option>
49
                <option value="a" selected="selected">a- ISO transliteration scheme</option>
Lines 72-78 Link Here
72
    <tr>
72
    <tr>
73
    <td><label for="f5">Character sets (mandatory) 1</label></td>
73
    <td><label for="f5">Character sets (mandatory) 1</label></td>
74
        <td>
74
        <td>
75
            <select name="f5" id="f5" size="1">
75
            <select name="f5" id="f5">
76
76
77
            [% IF ( f501 ) %]
77
            [% IF ( f501 ) %]
78
                <option value="01" selected="selected">01- ISO 646, IRV version (basic Latin set)</option>
78
                <option value="01" selected="selected">01- ISO 646, IRV version (basic Latin set)</option>
Lines 147-153 languages and obsolete typography) Link Here
147
    <tr>
147
    <tr>
148
    <td><label for="f6">Character sets (mandatory) 2</label></td>
148
    <td><label for="f6">Character sets (mandatory) 2</label></td>
149
        <td>
149
        <td>
150
            <select name="f6" id="f6" size="1">
150
            <select name="f6" id="f6">
151
151
152
            [% IF ( f6dblspace ) %]
152
            [% IF ( f6dblspace ) %]
153
                    <option value="  " selected="selected">non required value</option>
153
                    <option value="  " selected="selected">non required value</option>
Lines 232-238 languages and obsolete typography)</option> Link Here
232
    <tr>
232
    <tr>
233
    <td><label for="f8">Script of title</label></td>
233
    <td><label for="f8">Script of title</label></td>
234
    <td>
234
    <td>
235
    <select name="f8" id="f8" size="1">
235
    <select name="f8" id="f8">
236
            [% IF ( f8dblspace ) %]
236
            [% IF ( f8dblspace ) %]
237
                    <option value="  " selected="selected">Non required value</option>
237
                    <option value="  " selected="selected">Non required value</option>
238
            [% ELSE %]
238
            [% ELSE %]
Lines 333-339 languages and obsolete typography)</option> Link Here
333
    <tr>
333
    <tr>
334
        <td><label for="f9">Direction of Script Cataloguing</label></td>
334
        <td><label for="f9">Direction of Script Cataloguing</label></td>
335
        <td>
335
        <td>
336
            <select name="f9" id="f9" size="1">
336
            <select name="f9" id="f9">
337
            [% IF ( f90 ) %]
337
            [% IF ( f90 ) %]
338
                <option value="0" selected="selected">0 - left to right</option>
338
                <option value="0" selected="selected">0 - left to right</option>
339
            [% ELSE %]
339
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_105.tt (-13 / +13 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Illustration codes 1:</label></td>
12
		<td><label for="f1">Illustration codes 1:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1pipe ) %]
15
			[% IF ( f1pipe ) %]
16
            	           <option value="|" selected="selected">|- Filling character</option>
16
            	           <option value="|" selected="selected">|- Filling character</option>
17
                        [% ELSE %]
17
                        [% ELSE %]
Lines 109-115 Link Here
109
		</td>
109
		</td>
110
		<td><label for="f2">Illustration codes 2:</label></td>
110
		<td><label for="f2">Illustration codes 2:</label></td>
111
		<td>
111
		<td>
112
			<select name="f2" id="f2" size="1">
112
            <select name="f2" id="f2">
113
			[% IF ( f2pipe ) %]
113
			[% IF ( f2pipe ) %]
114
                            <option value="|" selected="selected">|- Filling character</option>
114
                            <option value="|" selected="selected">|- Filling character</option>
115
                        [% ELSE %]
115
                        [% ELSE %]
Lines 206-212 Link Here
206
		<tr>
206
		<tr>
207
		<td><label for="f3">Illustration codes 3:</label></td>
207
		<td><label for="f3">Illustration codes 3:</label></td>
208
		<td>
208
		<td>
209
			<select name="f3" id="f3" size="1">
209
            <select name="f3" id="f3">
210
			[% IF ( f3pipe ) %]
210
			[% IF ( f3pipe ) %]
211
                            <option value="|" selected="selected">|- Filling character</option>
211
                            <option value="|" selected="selected">|- Filling character</option>
212
                        [% ELSE %]
212
                        [% ELSE %]
Lines 302-308 Link Here
302
		</td>
302
		</td>
303
		<td><label for="f4">Illustration codes 4:</label></td>
303
		<td><label for="f4">Illustration codes 4:</label></td>
304
		<td>
304
		<td>
305
			<select name="f4" id="f4" size="1">
305
            <select name="f4" id="f4">
306
			[% IF ( f4pipe ) %]
306
			[% IF ( f4pipe ) %]
307
            	<option value="|" selected="selected">|- Filling character</option>
307
            	<option value="|" selected="selected">|- Filling character</option>
308
            [% ELSE %]
308
            [% ELSE %]
Lines 399-405 Link Here
399
	</tr>
399
	</tr>
400
	<tr>		<td><label for="f5">Form of contents codes 1:</label></td>
400
	<tr>		<td><label for="f5">Form of contents codes 1:</label></td>
401
		<td>
401
		<td>
402
			<select name="f5" id="f5" size="1">
402
            <select name="f5" id="f5">
403
                        [% IF ( f5pipe ) %]
403
                        [% IF ( f5pipe ) %]
404
                            <option value="|" selected="selected">|- Filling character</option>
404
                            <option value="|" selected="selected">|- Filling character</option>
405
                        [% ELSE %]
405
                        [% ELSE %]
Lines 537-543 Link Here
537
		</td>
537
		</td>
538
		<td><label for="f6">Form of contents codes 2:</label></td>
538
		<td><label for="f6">Form of contents codes 2:</label></td>
539
		<td>
539
		<td>
540
			<select name="f6" id="f6" size="1">
540
            <select name="f6" id="f6">
541
			[% IF ( f6pipe ) %]
541
			[% IF ( f6pipe ) %]
542
                            <option value="|" selected="selected">|- Filling character</option>
542
                            <option value="|" selected="selected">|- Filling character</option>
543
                        [% ELSE %]
543
                        [% ELSE %]
Lines 675-681 Link Here
675
		</td></tr>
675
		</td></tr>
676
		<tr>		<td><label for="f7">Form of contents codes 3:</label></td>
676
		<tr>		<td><label for="f7">Form of contents codes 3:</label></td>
677
		<td>
677
		<td>
678
			<select name="f7" id="f7" size="1">
678
            <select name="f7" id="f7">
679
			[% IF ( f7pipe ) %]
679
			[% IF ( f7pipe ) %]
680
                            <option value="|" selected="selected">|- Filling character</option>
680
                            <option value="|" selected="selected">|- Filling character</option>
681
                        [% ELSE %]
681
                        [% ELSE %]
Lines 812-818 Link Here
812
		</td>
812
		</td>
813
                  <td><label for="f8">Form of contents codes 4:</label></td>
813
                  <td><label for="f8">Form of contents codes 4:</label></td>
814
		<td>
814
		<td>
815
			<select name="f8" id="f8" size="1">
815
            <select name="f8" id="f8">
816
                        [% IF ( f8pipe ) %]
816
                        [% IF ( f8pipe ) %]
817
                            <option value="|" selected="selected">|- Filling character</option>
817
                            <option value="|" selected="selected">|- Filling character</option>
818
                        [% ELSE %]
818
                        [% ELSE %]
Lines 950-956 Link Here
950
  <tr>
950
  <tr>
951
        <td><label for="f9">Conference or meeting code:</label></td>
951
        <td><label for="f9">Conference or meeting code:</label></td>
952
                <td>
952
                <td>
953
                <select name="f9" id="f9" size="1">
953
                <select name="f9" id="f9">
954
               	[% IF ( f9pipe ) %]
954
               	[% IF ( f9pipe ) %]
955
            		<option value="|" selected="selected">|- Filling character</option>
955
            		<option value="|" selected="selected">|- Filling character</option>
956
	            [% ELSE %]
956
	            [% ELSE %]
Lines 976-982 Link Here
976
	    
976
	    
977
        <td><label for="f10">Festschrift indicator:</label></td>
977
        <td><label for="f10">Festschrift indicator:</label></td>
978
                <td>
978
                <td>
979
                <select name="f10" id="f10" size="1">
979
                <select name="f10" id="f10">
980
                [% IF ( f10pipe ) %]
980
                [% IF ( f10pipe ) %]
981
                    <option value="|" selected="selected">|- Filling character</option>
981
                    <option value="|" selected="selected">|- Filling character</option>
982
                [% ELSE %]
982
                [% ELSE %]
Lines 1000-1006 Link Here
1000
  <tr>
1000
  <tr>
1001
        <td><label for="f11">Index indicator</label></td>
1001
        <td><label for="f11">Index indicator</label></td>
1002
                <td>
1002
                <td>
1003
                        <select name="f11" id="f11" size="1">
1003
                        <select name="f11" id="f11">
1004
                        [% IF ( f11pipe ) %]
1004
                        [% IF ( f11pipe ) %]
1005
                            <option value="|" selected="selected">|- Filling character</option>
1005
                            <option value="|" selected="selected">|- Filling character</option>
1006
                        [% ELSE %]
1006
                        [% ELSE %]
Lines 1024-1030 Link Here
1024
  <tr>
1024
  <tr>
1025
        <td><label for="f12">Literature code</label></td>
1025
        <td><label for="f12">Literature code</label></td>
1026
                <td>
1026
                <td>
1027
                        <select name="f12" id="f12" size="1">
1027
                        <select name="f12" id="f12">
1028
                        [% IF ( f12pipe ) %]
1028
                        [% IF ( f12pipe ) %]
1029
                        <option value="|" selected="selected">|- Filling character</option>
1029
                        <option value="|" selected="selected">|- Filling character</option>
1030
                        [% ELSE %]
1030
                        [% ELSE %]
Lines 1094-1100 Link Here
1094
  <tr>
1094
  <tr>
1095
        <td><label for="f13">Biography code</label></td>
1095
        <td><label for="f13">Biography code</label></td>
1096
                <td>
1096
                <td>
1097
                        <select name="f13" id="f13" size="1">
1097
                        <select name="f13" id="f13">
1098
                        
1098
                        
1099
                        [% IF ( f13pipe ) %]
1099
                        [% IF ( f13pipe ) %]
1100
                        <option value="|" selected="selected">|- Filling character</option>
1100
                        <option value="|" selected="selected">|- Filling character</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_106.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Form of item: Coded data: Medium designator (not repeatable)</label></td>
12
        <td><label for="f1">Form of item: Coded data: Medium designator (not repeatable)</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
            
15
            
16
			[% IF ( f1r ) %]
16
			[% IF ( f1r ) %]
17
				<option value="r" selected="selected">regular print</option>
17
				<option value="r" selected="selected">regular print</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_110.tt (-8 / +8 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Type of continuing resource designator</label></td>
12
		<td><label for="f1">Type of continuing resource designator</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1pipe ) %]
15
			[% IF ( f1pipe ) %]
16
                            <option value="|" selected="selected">|- Filling character</option>
16
                            <option value="|" selected="selected">|- Filling character</option>
17
                        [% ELSE %]
17
                        [% ELSE %]
Lines 46-52 Link Here
46
	<tr>
46
	<tr>
47
		<td><label for="f2">Frequency of issue</label></td>
47
		<td><label for="f2">Frequency of issue</label></td>
48
		<td>
48
		<td>
49
			<select name="f2" id="f2" size="1">
49
            <select name="f2" id="f2">
50
			[% IF ( f2pipe ) %]
50
			[% IF ( f2pipe ) %]
51
                            <option value="|" selected="selected">|- Filling character</option>
51
                            <option value="|" selected="selected">|- Filling character</option>
52
                        [% ELSE %]
52
                        [% ELSE %]
Lines 156-162 Link Here
156
	<tr>
156
	<tr>
157
		<td><label for="f3">Regularity</label></td>
157
		<td><label for="f3">Regularity</label></td>
158
		<td>
158
		<td>
159
			<select name="f3" id="f3" size="1">
159
            <select name="f3" id="f3">
160
			[% IF ( f3pipe ) %]
160
			[% IF ( f3pipe ) %]
161
                            <option value="|" selected="selected">|- Filling character</option>
161
                            <option value="|" selected="selected">|- Filling character</option>
162
                        [% ELSE %]
162
                        [% ELSE %]
Lines 193-199 Link Here
193
	<tr>
193
	<tr>
194
		<td><label for="f4">Type of material code</label></td>
194
		<td><label for="f4">Type of material code</label></td>
195
		<td>
195
		<td>
196
			<select name="f4" id="f4" size="1">
196
            <select name="f4" id="f4">
197
			[% IF ( f4pipe ) %]
197
			[% IF ( f4pipe ) %]
198
                            <option value="|" selected="selected">|- Filling character</option>
198
                            <option value="|" selected="selected">|- Filling character</option>
199
                        [% ELSE %]
199
                        [% ELSE %]
Lines 333-339 Link Here
333
	<tr>
333
	<tr>
334
		<td><label for="f6">Conference publication indicator</label></td>
334
		<td><label for="f6">Conference publication indicator</label></td>
335
		<td>
335
		<td>
336
			<select name="f6" id="f6" size="1">
336
            <select name="f6" id="f6">
337
			[% IF ( f6pipe ) %]
337
			[% IF ( f6pipe ) %]
338
                            <option value="|" selected="selected">|- Filling character</option>
338
                            <option value="|" selected="selected">|- Filling character</option>
339
                        [% ELSE %]
339
                        [% ELSE %]
Lines 356-362 Link Here
356
	<tr>
356
	<tr>
357
			<td><label for="f7">Title-page availability code</label></td>
357
			<td><label for="f7">Title-page availability code</label></td>
358
		<td>
358
		<td>
359
			<select name="f7" id="f7" size="1">
359
            <select name="f7" id="f7">
360
			[% IF ( f7pipe ) %]
360
			[% IF ( f7pipe ) %]
361
                            <option value="|" selected="selected">|- Filling character</option>
361
                            <option value="|" selected="selected">|- Filling character</option>
362
                        [% ELSE %]
362
                        [% ELSE %]
Lines 440-446 Link Here
440
	<tr>
440
	<tr>
441
		<td><label for="f8">Index availability code</label></td>
441
		<td><label for="f8">Index availability code</label></td>
442
		<td>
442
		<td>
443
			<select name="f8" id="f8" size="1">
443
            <select name="f8" id="f8">
444
			[% IF ( f8pipe ) %]
444
			[% IF ( f8pipe ) %]
445
                            <option value="|" selected="selected">|- Filling character</option>
445
                            <option value="|" selected="selected">|- Filling character</option>
446
                        [% ELSE %]
446
                        [% ELSE %]
Lines 570-576 Link Here
570
	<tr>
570
	<tr>
571
		<td><label for="f9">Cumulative index availability code</label></td>
571
		<td><label for="f9">Cumulative index availability code</label></td>
572
		<td>
572
		<td>
573
			<select name="f9" id="f9" size="1">
573
            <select name="f9" id="f9">
574
			[% IF ( f9pipe ) %]
574
			[% IF ( f9pipe ) %]
575
                            <option value="|" selected="selected">|- Filling character</option>
575
                            <option value="|" selected="selected">|- Filling character</option>
576
                        [% ELSE %]
576
                        [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_115a.tt (-17 / +17 lines)
Lines 10-16 Link Here
10
	<tr>
10
	<tr>
11
		<td><label for="f1">Type of material</label></td>
11
		<td><label for="f1">Type of material</label></td>
12
		<td>
12
		<td>
13
			<select name="f1" id="f1" size="1">
13
            <select name="f1" id="f1">
14
			[% IF ( f1pipe ) %]
14
			[% IF ( f1pipe ) %]
15
				<option value="|" selected="selected">|- Filling character</option>
15
				<option value="|" selected="selected">|- Filling character</option>
16
			[% ELSE %]
16
			[% ELSE %]
Lines 48-54 Link Here
48
	<tr>
48
	<tr>
49
		<td><label for="f3">Colour indicator</label></td>
49
		<td><label for="f3">Colour indicator</label></td>
50
		<td>
50
		<td>
51
	<select name="f3" id="f3" size="1">
51
    <select name="f3" id="f3">
52
			[% IF ( f3pipe ) %]
52
			[% IF ( f3pipe ) %]
53
				<option value="|" selected="selected">|- Filling character</option>
53
				<option value="|" selected="selected">|- Filling character</option>
54
			[% ELSE %]
54
			[% ELSE %]
Lines 95-101 Link Here
95
	<tr>
95
	<tr>
96
		<td><label for="f4">Sound indicator</label></td>
96
		<td><label for="f4">Sound indicator</label></td>
97
		<td>
97
		<td>
98
			<select name="f4" id="f4" size="1">
98
            <select name="f4" id="f4">
99
			[% IF ( f4pipe ) %]
99
			[% IF ( f4pipe ) %]
100
				<option value="|" selected="selected">|- Filling character</option>
100
				<option value="|" selected="selected">|- Filling character</option>
101
			[% ELSE %]
101
			[% ELSE %]
Lines 134-140 Link Here
134
	<tr>
134
	<tr>
135
		<td><label for="f5">Media for sound</label></td>
135
		<td><label for="f5">Media for sound</label></td>
136
		<td>
136
		<td>
137
			<select name="f5" id="f5" size="1">
137
            <select name="f5" id="f5">
138
			[% IF ( f5pipe ) %]
138
			[% IF ( f5pipe ) %]
139
				<option value="|" selected="selected">|- Filling character</option>
139
				<option value="|" selected="selected">|- Filling character</option>
140
			[% ELSE %]
140
			[% ELSE %]
Lines 226-232 Link Here
226
	<tr>
226
	<tr>
227
		<td><label for="f6">Width or dimensions</label></td>
227
		<td><label for="f6">Width or dimensions</label></td>
228
		<td>
228
		<td>
229
			<select name="f6" id="f6" size="1">
229
            <select name="f6" id="f6">
230
			[% IF ( f6pipe ) %]
230
			[% IF ( f6pipe ) %]
231
				<option value="|" selected="selected">|- Filling character</option>
231
				<option value="|" selected="selected">|- Filling character</option>
232
			[% ELSE %]
232
			[% ELSE %]
Lines 365-371 Link Here
365
	<tr>
365
	<tr>
366
		<td><label for="f7">Form of release - visual projection, motion picture</label></td>
366
		<td><label for="f7">Form of release - visual projection, motion picture</label></td>
367
		<td>
367
		<td>
368
			<select name="f7" id="f7" size="1">
368
            <select name="f7" id="f7">
369
			[% IF ( f7pipe ) %]
369
			[% IF ( f7pipe ) %]
370
				<option value="|" selected="selected">|- Filling character</option>
370
				<option value="|" selected="selected">|- Filling character</option>
371
			[% ELSE %]
371
			[% ELSE %]
Lines 458-464 Link Here
458
	<tr>
458
	<tr>
459
		<td><label for="f8">Technique - videorecording, motion picture</label></td>
459
		<td><label for="f8">Technique - videorecording, motion picture</label></td>
460
		<td>
460
		<td>
461
		<select name="f8" id="f8" size="1">
461
        <select name="f8" id="f8">
462
			[% IF ( f8pipe ) %]
462
			[% IF ( f8pipe ) %]
463
				<option value="|" selected="selected">|- Filling character</option>
463
				<option value="|" selected="selected">|- Filling character</option>
464
			[% ELSE %]
464
			[% ELSE %]
Lines 512-518 Link Here
512
	<tr>
512
	<tr>
513
		<td><label for="f9">Presentation format - motion picture</label></td>
513
		<td><label for="f9">Presentation format - motion picture</label></td>
514
		<td>
514
		<td>
515
			<select name="f9" id="f9" size="1">
515
            <select name="f9" id="f9">
516
			[% IF ( f9pipe ) %]
516
			[% IF ( f9pipe ) %]
517
				<option value="|" selected="selected">|- Filling character</option>
517
				<option value="|" selected="selected">|- Filling character</option>
518
			[% ELSE %]
518
			[% ELSE %]
Lines 574-580 Link Here
574
	<tr>
574
	<tr>
575
		<td><label for="f10">Accompanying material 1</label></td>
575
		<td><label for="f10">Accompanying material 1</label></td>
576
		<td>
576
		<td>
577
			<select name="f10" id="f10" size="1">
577
            <select name="f10" id="f10">
578
			[% IF ( f10pipe ) %]
578
			[% IF ( f10pipe ) %]
579
				<option value="|" selected="selected">|- Filling character</option>
579
				<option value="|" selected="selected">|- Filling character</option>
580
			[% ELSE %]
580
			[% ELSE %]
Lines 645-651 Link Here
645
		<tr>
645
		<tr>
646
		<td><label for="f11">Accompanying material 2</label></td>
646
		<td><label for="f11">Accompanying material 2</label></td>
647
		<td>
647
		<td>
648
			<select name="f11" id="f11" size="1">
648
            <select name="f11" id="f11">
649
			[% IF ( f11pipe ) %]
649
			[% IF ( f11pipe ) %]
650
				<option value="|" selected="selected">|- Filling character</option>
650
				<option value="|" selected="selected">|- Filling character</option>
651
			[% ELSE %]
651
			[% ELSE %]
Lines 715-721 Link Here
715
	<tr>
715
	<tr>
716
		<td><label for="f12">Accompanying material 3</label></td>
716
		<td><label for="f12">Accompanying material 3</label></td>
717
		<td>
717
		<td>
718
			<select name="f12" id="f12" size="1">
718
            <select name="f12" id="f12">
719
			[% IF ( f12pipe ) %]
719
			[% IF ( f12pipe ) %]
720
				<option value="|" selected="selected">|- Filling character</option>
720
				<option value="|" selected="selected">|- Filling character</option>
721
			[% ELSE %]
721
			[% ELSE %]
Lines 784-790 Link Here
784
		<tr>
784
		<tr>
785
		<td><label for="f13">Accompanying material 4</label></td>
785
		<td><label for="f13">Accompanying material 4</label></td>
786
		<td>
786
		<td>
787
			<select name="f13" id="f13" size="1">
787
            <select name="f13" id="f13">
788
			[% IF ( f13pipe ) %]
788
			[% IF ( f13pipe ) %]
789
				<option value="|" selected="selected">|- Filling character</option>
789
				<option value="|" selected="selected">|- Filling character</option>
790
			[% ELSE %]
790
			[% ELSE %]
Lines 859-865 Link Here
859
859
860
<tr>		<td><label for="f14">Form of release - videorecording</label></td>
860
<tr>		<td><label for="f14">Form of release - videorecording</label></td>
861
		<td>
861
		<td>
862
			<select name="f14" id="f14" size="1">
862
            <select name="f14" id="f14">
863
			[% IF ( f14pipe ) %]
863
			[% IF ( f14pipe ) %]
864
				<option value="|" selected="selected">|- Filling character</option>
864
				<option value="|" selected="selected">|- Filling character</option>
865
			[% ELSE %]
865
			[% ELSE %]
Lines 913-919 Link Here
913
</tr>	
913
</tr>	
914
<tr>		<td><label for="f15">Presentation format - videorecording</label></td>
914
<tr>		<td><label for="f15">Presentation format - videorecording</label></td>
915
		<td>
915
		<td>
916
			<select name="f15" id="f15" size="1">
916
            <select name="f15" id="f15">
917
			[% IF ( f15pipe ) %]
917
			[% IF ( f15pipe ) %]
918
				<option value="|" selected="selected">|- Filling character</option>
918
				<option value="|" selected="selected">|- Filling character</option>
919
			[% ELSE %]
919
			[% ELSE %]
Lines 1011-1017 Link Here
1011
</tr>	
1011
</tr>	
1012
<tr>		<td><label for="f16">Base of emulsion material - visual projection</label></td>
1012
<tr>		<td><label for="f16">Base of emulsion material - visual projection</label></td>
1013
		<td>
1013
		<td>
1014
			<select name="f16" id="f16" size="1">
1014
            <select name="f16" id="f16">
1015
				[% IF ( f16pipe ) %]
1015
				[% IF ( f16pipe ) %]
1016
					<option value="|" selected="selected">|- Filling character</option>
1016
					<option value="|" selected="selected">|- Filling character</option>
1017
				[% ELSE %]
1017
				[% ELSE %]
Lines 1069-1075 Link Here
1069
</tr>	
1069
</tr>	
1070
<tr>		<td><label for="f17">Secondary support material - visual projection</label></td>
1070
<tr>		<td><label for="f17">Secondary support material - visual projection</label></td>
1071
		<td>
1071
		<td>
1072
			<select name="f17" id="f17" size="1">
1072
            <select name="f17" id="f17">
1073
			[% IF ( f17pipe ) %]
1073
			[% IF ( f17pipe ) %]
1074
				<option value="|" selected="selected">|- Filling character</option>
1074
				<option value="|" selected="selected">|- Filling character</option>
1075
			[% ELSE %]
1075
			[% ELSE %]
Lines 1146-1152 Link Here
1146
</tr>	
1146
</tr>	
1147
<tr>		<td><label for="f18">Broadcast standard - videorecording</label></td>
1147
<tr>		<td><label for="f18">Broadcast standard - videorecording</label></td>
1148
		<td>
1148
		<td>
1149
			<select name="f18" id="f18" size="1">
1149
            <select name="f18" id="f18">
1150
			[% IF ( f18pipe ) %]
1150
			[% IF ( f18pipe ) %]
1151
				<option value="|" selected="selected">|- Filling character</option>
1151
				<option value="|" selected="selected">|- Filling character</option>
1152
			[% ELSE %]
1152
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_115b.tt (-9 / +9 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Generation</label></td>
12
		<td><label for="f1">Generation</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1pipe ) %]
15
			[% IF ( f1pipe ) %]
16
            	<option value="|" selected="selected">|- Filling character</option>
16
            	<option value="|" selected="selected">|- Filling character</option>
17
            [% ELSE %]
17
            [% ELSE %]
Lines 64-70 Link Here
64
	<tr>
64
	<tr>
65
		<td><label for="f2">Production elements</label></td>
65
		<td><label for="f2">Production elements</label></td>
66
		<td>
66
		<td>
67
			<select name="f2" id="f2" size="1">
67
            <select name="f2" id="f2">
68
			[% IF ( f2pipe ) %]
68
			[% IF ( f2pipe ) %]
69
            	<option value="|" selected="selected">|- Filling character</option>
69
            	<option value="|" selected="selected">|- Filling character</option>
70
            [% ELSE %]
70
            [% ELSE %]
Lines 137-143 Link Here
137
	<tr>
137
	<tr>
138
		<td><label for="f3">Refined categories of colour for moving pictures</label></td>
138
		<td><label for="f3">Refined categories of colour for moving pictures</label></td>
139
		<td>
139
		<td>
140
	<select name="f3" id="f3" size="1">
140
    <select name="f3" id="f3">
141
			[% IF ( f3pipe ) %]
141
			[% IF ( f3pipe ) %]
142
            	<option value="|" selected="selected">|- Filling character</option>
142
            	<option value="|" selected="selected">|- Filling character</option>
143
            [% ELSE %]
143
            [% ELSE %]
Lines 283-289 Link Here
283
	<tr>
283
	<tr>
284
		<td><label for="f4">Film emulsion (polarity)</label></td>
284
		<td><label for="f4">Film emulsion (polarity)</label></td>
285
		<td>
285
		<td>
286
			<select name="f4" id="f4" size="1">
286
            <select name="f4" id="f4">
287
			[% IF ( f4pipe ) %]
287
			[% IF ( f4pipe ) %]
288
            	<option value="|" selected="selected">|- Filling character</option>
288
            	<option value="|" selected="selected">|- Filling character</option>
289
            [% ELSE %]
289
            [% ELSE %]
Lines 327-333 Link Here
327
	<tr>
327
	<tr>
328
		<td><label for="f5">Film base</label></td>
328
		<td><label for="f5">Film base</label></td>
329
		<td>
329
		<td>
330
			<select name="f5" id="f5" size="1">
330
            <select name="f5" id="f5">
331
			[% IF ( f5pipe ) %]
331
			[% IF ( f5pipe ) %]
332
            	<option value="|" selected="selected">|- Filling character</option>
332
            	<option value="|" selected="selected">|- Filling character</option>
333
            [% ELSE %]
333
            [% ELSE %]
Lines 385-391 Link Here
385
	<tr>
385
	<tr>
386
		<td><label for="f6">Kind of sound for moving images</label></td>
386
		<td><label for="f6">Kind of sound for moving images</label></td>
387
		<td>
387
		<td>
388
			<select name="f6" id="f6" size="1">
388
            <select name="f6" id="f6">
389
			[% IF ( f6pipe ) %]
389
			[% IF ( f6pipe ) %]
390
            	<option value="|" selected="selected">|- Filling character</option>
390
            	<option value="|" selected="selected">|- Filling character</option>
391
            [% ELSE %]
391
            [% ELSE %]
Lines 449-455 Link Here
449
	<tr>
449
	<tr>
450
		<td><label for="f7">Kind of film stock or print</label></td>
450
		<td><label for="f7">Kind of film stock or print</label></td>
451
		<td>
451
		<td>
452
			<select name="f7" id="f7" size="1">
452
            <select name="f7" id="f7">
453
			[% IF ( f7pipe ) %]
453
			[% IF ( f7pipe ) %]
454
            	<option value="|" selected="selected">|- Filling character</option>
454
            	<option value="|" selected="selected">|- Filling character</option>
455
            [% ELSE %]
455
            [% ELSE %]
Lines 510-516 Link Here
510
	<tr>
510
	<tr>
511
		<td><label for="f8">Deterioration stage</label></td>
511
		<td><label for="f8">Deterioration stage</label></td>
512
		<td>
512
		<td>
513
			<select name="f8" id="f8" size="1">
513
            <select name="f8" id="f8">
514
			[% IF ( f8pipe ) %]
514
			[% IF ( f8pipe ) %]
515
            	<option value="|" selected="selected">|- Filling character</option>
515
            	<option value="|" selected="selected">|- Filling character</option>
516
            [% ELSE %]
516
            [% ELSE %]
Lines 594-600 Link Here
594
	<tr>
594
	<tr>
595
		<td><label for="f9">Completeness</label></td>
595
		<td><label for="f9">Completeness</label></td>
596
		<td>
596
		<td>
597
			<select name="f9" id="f9" size="1">
597
            <select name="f9" id="f9">
598
			[% IF ( f9pipe ) %]
598
			[% IF ( f9pipe ) %]
599
            	<option value="|" selected="selected">|- Filling character</option>
599
            	<option value="|" selected="selected">|- Filling character</option>
600
            [% ELSE %]
600
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_116.tt (-11 / +11 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Specific material designation</label></td>
12
		<td><label for="f1">Specific material designation</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1pipe ) %]
15
			[% IF ( f1pipe ) %]
16
                            <option value="|" selected="selected">|- Filling character</option>
16
                            <option value="|" selected="selected">|- Filling character</option>
17
                        [% ELSE %]
17
                        [% ELSE %]
Lines 89-95 Link Here
89
	<tr>
89
	<tr>
90
		<td><label for="f2">Primary support material</label></td>
90
		<td><label for="f2">Primary support material</label></td>
91
		<td>
91
		<td>
92
			<select name="f2" id="f2" size="1">
92
            <select name="f2" id="f2">
93
			[% IF ( f2pipe ) %]
93
			[% IF ( f2pipe ) %]
94
                            <option value="|" selected="selected">|- Filling character</option>
94
                            <option value="|" selected="selected">|- Filling character</option>
95
                        [% ELSE %]
95
                        [% ELSE %]
Lines 206-212 Link Here
206
	<tr>
206
	<tr>
207
		<td><label for="f3">Secondary support material</label></td>
207
		<td><label for="f3">Secondary support material</label></td>
208
		<td>
208
		<td>
209
	<select name="f3" id="f3" size="1">
209
    <select name="f3" id="f3">
210
			[% IF ( f3pipe ) %]
210
			[% IF ( f3pipe ) %]
211
            	<option value="|" selected="selected">|- Filling character</option>
211
            	<option value="|" selected="selected">|- Filling character</option>
212
            [% ELSE %]
212
            [% ELSE %]
Lines 226-232 Link Here
226
	<tr>
226
	<tr>
227
		<td><label for="f4">Colour</label></td>
227
		<td><label for="f4">Colour</label></td>
228
		<td>
228
		<td>
229
			<select name="f4" id="f4" size="1">
229
            <select name="f4" id="f4">
230
			[% IF ( f4pipe ) %]
230
			[% IF ( f4pipe ) %]
231
            	<option value="|" selected="selected">|- Filling character</option>
231
            	<option value="|" selected="selected">|- Filling character</option>
232
            [% ELSE %]
232
            [% ELSE %]
Lines 288-294 Link Here
288
	<tr>
288
	<tr>
289
        <td><label for="f5">Techniques (drawings, paintings) 1</label></td>
289
        <td><label for="f5">Techniques (drawings, paintings) 1</label></td>
290
		<td>
290
		<td>
291
			<select name="f5" id="f5" size="1">
291
            <select name="f5" id="f5">
292
			[% IF ( f5dblpipe ) %]
292
			[% IF ( f5dblpipe ) %]
293
                            <option value="||" selected="selected">|- Filling character</option>
293
                            <option value="||" selected="selected">|- Filling character</option>
294
                        [% ELSE %]
294
                        [% ELSE %]
Lines 485-491 Link Here
485
	<tr>
485
	<tr>
486
        <td><label for="f6">Techniques (drawings, paintings) 2</label></td>
486
        <td><label for="f6">Techniques (drawings, paintings) 2</label></td>
487
		<td>
487
		<td>
488
			<select name="f6" id="f6" size="1">
488
            <select name="f6" id="f6">
489
			[% IF ( f6dblpipe ) %]
489
			[% IF ( f6dblpipe ) %]
490
            	<option value="||" selected="selected">||- Filling characters</option>
490
            	<option value="||" selected="selected">||- Filling characters</option>
491
            [% ELSE %]
491
            [% ELSE %]
Lines 686-692 Link Here
686
	<tr>
686
	<tr>
687
        <td><label for="f7">Techniques (drawings, paintings) 3</label></td>
687
        <td><label for="f7">Techniques (drawings, paintings) 3</label></td>
688
		<td>
688
		<td>
689
			<select name="f7" id="f7" size="1">
689
            <select name="f7" id="f7">
690
			[% IF ( f7dblpipe ) %]
690
			[% IF ( f7dblpipe ) %]
691
            	<option value="||" selected="selected">||- Filling characters</option>
691
            	<option value="||" selected="selected">||- Filling characters</option>
692
            [% ELSE %]
692
            [% ELSE %]
Lines 890-896 Link Here
890
	<tr>
890
	<tr>
891
        <td><label for="f8">Technique (prints) 1</label></td>
891
        <td><label for="f8">Technique (prints) 1</label></td>
892
		<td>
892
		<td>
893
			<select name="f8" id="f8" size="1">
893
            <select name="f8" id="f8">
894
			[% IF ( f8dblpipe ) %]
894
			[% IF ( f8dblpipe ) %]
895
            	<option value="||" selected="selected">||- Filling characters</option>
895
            	<option value="||" selected="selected">||- Filling characters</option>
896
            [% ELSE %]
896
            [% ELSE %]
Lines 1083-1089 Link Here
1083
	<tr>
1083
	<tr>
1084
        <td><label for="f9">Technique (prints) 2</label></td>
1084
        <td><label for="f9">Technique (prints) 2</label></td>
1085
		<td>
1085
		<td>
1086
			<select name="f9" id="f9" size="1">
1086
            <select name="f9" id="f9">
1087
			[% IF ( f9dblpipe ) %]
1087
			[% IF ( f9dblpipe ) %]
1088
            	<option value="||" selected="selected">||- Filling characters</option>
1088
            	<option value="||" selected="selected">||- Filling characters</option>
1089
            [% ELSE %]
1089
            [% ELSE %]
Lines 1279-1285 Link Here
1279
	<tr>
1279
	<tr>
1280
        <td><label for="f10">Technique (prints) 3</label></td>
1280
        <td><label for="f10">Technique (prints) 3</label></td>
1281
		<td>
1281
		<td>
1282
			<select name="f10" id="f10" size="1">
1282
            <select name="f10" id="f10">
1283
			[% IF ( f10dblpipe ) %]
1283
			[% IF ( f10dblpipe ) %]
1284
            	<option value="||" selected="selected">||- Filling characters</option>
1284
            	<option value="||" selected="selected">||- Filling characters</option>
1285
            [% ELSE %]
1285
            [% ELSE %]
Lines 1473-1479 Link Here
1473
	<tr>
1473
	<tr>
1474
        <td><label for="f11">Functional designation</label></td>
1474
        <td><label for="f11">Functional designation</label></td>
1475
		<td>
1475
		<td>
1476
			<select name="f11" id="f11" size="1">
1476
            <select name="f11" id="f11">
1477
			[% IF ( f11dblpipe ) %]
1477
			[% IF ( f11dblpipe ) %]
1478
                            <option value="||" selected="selected">||- Filling characters</option>
1478
                            <option value="||" selected="selected">||- Filling characters</option>
1479
                        [% ELSE %]
1479
                        [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_117.tt (-5 / +5 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Specific material designation</label></td>
12
        <td><label for="f1">Specific material designation</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1dblpipe ) %]
15
			[% IF ( f1dblpipe ) %]
16
            	           <option value="||" selected="selected">||- Filling characters</option>
16
            	           <option value="||" selected="selected">||- Filling characters</option>
17
                        [% ELSE %]
17
                        [% ELSE %]
Lines 221-227 Link Here
221
	<tr>
221
	<tr>
222
		<td><label for="f2">Material 1</label></td>
222
		<td><label for="f2">Material 1</label></td>
223
		<td>
223
		<td>
224
			<select name="f2" id="f2" size="1">
224
            <select name="f2" id="f2">
225
			[% IF ( f2dblpipe ) %]
225
			[% IF ( f2dblpipe ) %]
226
                            <option value="||" selected="selected">||- Filling characters</option>
226
                            <option value="||" selected="selected">||- Filling characters</option>
227
                        [% ELSE %]
227
                        [% ELSE %]
Lines 400-406 Link Here
400
	<tr>
400
	<tr>
401
		<td><label for="f3">Material 2</label></td>
401
		<td><label for="f3">Material 2</label></td>
402
		<td>
402
		<td>
403
			<select name="f3" id="f3" size="1">
403
            <select name="f3" id="f3">
404
			[% IF ( f3dblpipe ) %]
404
			[% IF ( f3dblpipe ) %]
405
                            <option value="||" selected="selected">||- Filling characters</option>
405
                            <option value="||" selected="selected">||- Filling characters</option>
406
                        [% ELSE %]
406
                        [% ELSE %]
Lines 580-586 Link Here
580
	<tr>
580
	<tr>
581
		<td><label for="f4">Material 3</label></td>
581
		<td><label for="f4">Material 3</label></td>
582
		<td>
582
		<td>
583
			<select name="f4" id="f4" size="1">
583
            <select name="f4" id="f4">
584
			[% IF ( f4dblpipe ) %]
584
			[% IF ( f4dblpipe ) %]
585
                            <option value="||" selected="selected">||- Filling characters</option>
585
                            <option value="||" selected="selected">||- Filling characters</option>
586
                        [% ELSE %]
586
                        [% ELSE %]
Lines 758-764 Link Here
758
	<tr>
758
	<tr>
759
		<td><label for="f5">Color</label></td>
759
		<td><label for="f5">Color</label></td>
760
		<td>
760
		<td>
761
	<select name="f5" id="f5" size="1">
761
    <select name="f5" id="f5">
762
                        [% IF ( f5pipe ) %]
762
                        [% IF ( f5pipe ) %]
763
                            <option value="|" selected="selected">|- Filling character</option>
763
                            <option value="|" selected="selected">|- Filling character</option>
764
                        [% ELSE %]
764
                        [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_120.tt (-10 / +10 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Color indicator</label></td>
12
		<td><label for="f1">Color indicator</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1a ) %]
15
			[% IF ( f1a ) %]
16
				<option value="a" selected="selected">one color</option>
16
				<option value="a" selected="selected">one color</option>
17
			[% ELSE %]
17
			[% ELSE %]
Lines 26-32 Link Here
26
		</td></tr><tr>
26
		</td></tr><tr>
27
		<td><label for="f2">Index indicator</label></td>
27
		<td><label for="f2">Index indicator</label></td>
28
		<td>
28
		<td>
29
			<select name="f2" id="f2" size="1">
29
            <select name="f2" id="f2">
30
			[% IF ( f2a ) %]
30
			[% IF ( f2a ) %]
31
				<option value="a" selected="selected">index or name list on cartographic item itself</option>
31
				<option value="a" selected="selected">index or name list on cartographic item itself</option>
32
			[% ELSE %]
32
			[% ELSE %]
Lines 51-57 Link Here
51
		</td></tr><tr>
51
		</td></tr><tr>
52
		<td><label for="f3">Narrative text indicator</label></td>
52
		<td><label for="f3">Narrative text indicator</label></td>
53
		<td>
53
		<td>
54
			<select name="f3" id="f3" size="1">
54
            <select name="f3" id="f3">
55
55
56
			[% IF ( f3a ) %]
56
			[% IF ( f3a ) %]
57
				<option value="a" selected="selected">text on cartographic item itself</option>
57
				<option value="a" selected="selected">text on cartographic item itself</option>
Lines 72-78 Link Here
72
		</td></tr><tr>
72
		</td></tr><tr>
73
		<td><label for="f4">Relief codes 1:</label></td>
73
		<td><label for="f4">Relief codes 1:</label></td>
74
		<td>
74
		<td>
75
			<select name="f4" id="f4" size="1">
75
            <select name="f4" id="f4">
76
			[% IF ( f4space ) %]
76
			[% IF ( f4space ) %]
77
				<option value=" " selected="selected">non required value</option>
77
				<option value=" " selected="selected">non required value</option>
78
			[% ELSE %]
78
			[% ELSE %]
Lines 148-154 Link Here
148
	</tr><tr>
148
	</tr><tr>
149
		<td><label for="f5">Relief codes 2:</label></td>
149
		<td><label for="f5">Relief codes 2:</label></td>
150
		<td>
150
		<td>
151
			<select name="f5" id="f5" size="1">
151
            <select name="f5" id="f5">
152
			[% IF ( f5space ) %]
152
			[% IF ( f5space ) %]
153
				<option value=" " selected="selected">non required value</option>
153
				<option value=" " selected="selected">non required value</option>
154
			[% ELSE %]
154
			[% ELSE %]
Lines 224-230 Link Here
224
	</tr><tr>
224
	</tr><tr>
225
		<td><label for="f6">Relief codes 3:</label></td>
225
		<td><label for="f6">Relief codes 3:</label></td>
226
		<td>
226
		<td>
227
			<select name="f6" id="f6" size="1">
227
            <select name="f6" id="f6">
228
                        
228
                        
229
                        [% IF ( f6space ) %]
229
                        [% IF ( f6space ) %]
230
                                <option value=" " selected="selected">non required value</option>
230
                                <option value=" " selected="selected">non required value</option>
Lines 302-308 Link Here
302
	</tr><tr>
302
	</tr><tr>
303
		<td><label for="f7">Relief codes 4:</label></td>
303
		<td><label for="f7">Relief codes 4:</label></td>
304
		<td>
304
		<td>
305
			<select name="f7" id="f7" size="1">
305
            <select name="f7" id="f7">
306
                        [% IF ( f7space ) %]
306
                        [% IF ( f7space ) %]
307
                                <option value=" " selected="selected">non required value</option>
307
                                <option value=" " selected="selected">non required value</option>
308
                        [% ELSE %]
308
                        [% ELSE %]
Lines 379-385 Link Here
379
	</tr>
379
	</tr>
380
	<tr>		<td><label for="f8">Map projection</label></td>
380
	<tr>		<td><label for="f8">Map projection</label></td>
381
		<td>
381
		<td>
382
			<select name="f8" id="f8" size="1">
382
            <select name="f8" id="f8">
383
383
384
			[% IF ( f8aa ) %]
384
			[% IF ( f8aa ) %]
385
				<option value="aa" selected="selected">Aitoff</option>
385
				<option value="aa" selected="selected">Aitoff</option>
Lines 653-659 Link Here
653
653
654
		</td></tr><tr><td><label for="f9">Prime meridian 1:</label></td>
654
		</td></tr><tr><td><label for="f9">Prime meridian 1:</label></td>
655
		<td>
655
		<td>
656
			<select name="f9" id="f9" size="1">
656
            <select name="f9" id="f9">
657
			[% IF ( f9dblspace ) %]
657
			[% IF ( f9dblspace ) %]
658
				<option value="  " selected="selected">non required value</option>
658
				<option value="  " selected="selected">non required value</option>
659
			[% ELSE %]
659
			[% ELSE %]
Lines 888-894 Link Here
888
888
889
		</td></tr><tr>		<td><label for="f10">Prime meridian 2:</label></td>
889
		</td></tr><tr>		<td><label for="f10">Prime meridian 2:</label></td>
890
		<td>
890
		<td>
891
			<select name="f10" id="f10" size="1">
891
            <select name="f10" id="f10">
892
            
892
            
893
			[% IF ( f10dblspace ) %]
893
			[% IF ( f10dblspace ) %]
894
				<option value="  " selected="selected">non required value</option>
894
				<option value="  " selected="selected">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_121a.tt (-8 / +8 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Physical dimension</label></td>
12
		<td><label for="f1">Physical dimension</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
15
16
			[% IF ( f1a ) %]
16
			[% IF ( f1a ) %]
17
				<option value="a" selected="selected">2-dimensional</option>
17
				<option value="a" selected="selected">2-dimensional</option>
Lines 27-33 Link Here
27
		</td></tr><tr>
27
		</td></tr><tr>
28
		<td><label for="f2">Primary cartographic image 1:</label></td>
28
		<td><label for="f2">Primary cartographic image 1:</label></td>
29
		<td>
29
		<td>
30
			<select name="f2" id="f2" size="1">
30
            <select name="f2" id="f2">
31
            
31
            
32
			[% IF ( f2space ) %]
32
			[% IF ( f2space ) %]
33
				<option value=" " selected="selected">non required value</option>
33
				<option value=" " selected="selected">non required value</option>
Lines 65-71 Link Here
65
		<tr>
65
		<tr>
66
		<td><label for="f3">Primary cartographic image 2:</label></td>
66
		<td><label for="f3">Primary cartographic image 2:</label></td>
67
		<td>
67
		<td>
68
			<select name="f3" id="f3" size="1">
68
            <select name="f3" id="f3">
69
                        [% IF ( f3space ) %]
69
                        [% IF ( f3space ) %]
70
                                <option value=" " selected="selected">non required value</option>
70
                                <option value=" " selected="selected">non required value</option>
71
                        [% ELSE %]
71
                        [% ELSE %]
Lines 101-107 Link Here
101
		</td></tr><tr>
101
		</td></tr><tr>
102
		<td><label for="f4">Physical medium</label></td>
102
		<td><label for="f4">Physical medium</label></td>
103
		<td>
103
		<td>
104
			<select name="f4" id="f4" size="1">
104
            <select name="f4" id="f4">
105
			[% IF ( f4aa ) %]
105
			[% IF ( f4aa ) %]
106
				<option value="aa" selected="selected">paper</option>
106
				<option value="aa" selected="selected">paper</option>
107
			[% ELSE %]
107
			[% ELSE %]
Lines 201-207 Link Here
201
		</td></tr><tr>
201
		</td></tr><tr>
202
		<td><label for="f5">Creation technique</label></td>
202
		<td><label for="f5">Creation technique</label></td>
203
		<td>
203
		<td>
204
			<select name="f5" id="f5" size="1">
204
            <select name="f5" id="f5">
205
			[% IF ( f5a ) %]
205
			[% IF ( f5a ) %]
206
				<option value="a" selected="selected">manuscript</option>
206
				<option value="a" selected="selected">manuscript</option>
207
			[% ELSE %]
207
			[% ELSE %]
Lines 242-248 Link Here
242
	</tr><tr>
242
	</tr><tr>
243
		<td><label for="f6">Form of reproduction</label></td>
243
		<td><label for="f6">Form of reproduction</label></td>
244
		<td>
244
		<td>
245
			<select name="f6" id="f6" size="1">
245
            <select name="f6" id="f6">
246
			[% IF ( f6a ) %]
246
			[% IF ( f6a ) %]
247
				<option value="a" selected="selected">by hand</option>
247
				<option value="a" selected="selected">by hand</option>
248
			[% ELSE %]
248
			[% ELSE %]
Lines 273-279 Link Here
273
	</tr><tr>
273
	</tr><tr>
274
		<td><label for="f7">Geodetic adjustment</label></td>
274
		<td><label for="f7">Geodetic adjustment</label></td>
275
		<td>
275
		<td>
276
			<select name="f7" id="f7" size="1">
276
            <select name="f7" id="f7">
277
			[% IF ( f7a ) %]
277
			[% IF ( f7a ) %]
278
				<option value="a" selected="selected">a- no adjustment</option>
278
				<option value="a" selected="selected">a- no adjustment</option>
279
			[% ELSE %]
279
			[% ELSE %]
Lines 300-306 Link Here
300
<tr>
300
<tr>
301
		<td><label for="f8">Physical form of publication</label></td>
301
		<td><label for="f8">Physical form of publication</label></td>
302
		<td>
302
		<td>
303
			<select name="f8" id="f8" size="1">
303
            <select name="f8" id="f8">
304
			[% IF ( f8a ) %]
304
			[% IF ( f8a ) %]
305
				<option value="a" selected="selected">single</option>
305
				<option value="a" selected="selected">single</option>
306
			[% ELSE %]
306
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_121b.tt (-6 / +6 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Altitude of sensor</label></td>
12
        <td><label for="f1">Altitude of sensor</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1a ) %]
15
			[% IF ( f1a ) %]
16
				<option value="a" selected="selected">terrestrial</option>
16
				<option value="a" selected="selected">terrestrial</option>
17
			[% ELSE %]
17
			[% ELSE %]
Lines 31-37 Link Here
31
		</td></tr><tr>
31
		</td></tr><tr>
32
        <td><label for="f2">Attitude of sensor</label></td>
32
        <td><label for="f2">Attitude of sensor</label></td>
33
		<td>
33
		<td>
34
			<select name="f2" id="f2" size="1">
34
            <select name="f2" id="f2">
35
                        
35
                        
36
			[% IF ( f2a ) %]
36
			[% IF ( f2a ) %]
37
				<option value="a" selected="selected">low oblique</option>
37
				<option value="a" selected="selected">low oblique</option>
Lines 56-62 Link Here
56
<tr>
56
<tr>
57
		<td><label for="f4">Quality of image</label></td>
57
		<td><label for="f4">Quality of image</label></td>
58
		<td>
58
		<td>
59
			<select name="f4" id="f4" size="1">
59
            <select name="f4" id="f4">
60
			
60
			
61
			[% IF ( f4a ) %]
61
			[% IF ( f4a ) %]
62
				<option value="a" selected="selected">poor</option>
62
				<option value="a" selected="selected">poor</option>
Lines 82-88 Link Here
82
		</td></tr><tr>
82
		</td></tr><tr>
83
		<td><label for="f5">Cloud cover</label></td>
83
		<td><label for="f5">Cloud cover</label></td>
84
		<td>
84
		<td>
85
			<select name="f5" id="f5" size="1">
85
            <select name="f5" id="f5">
86
86
87
			[% IF ( f51 ) %]
87
			[% IF ( f51 ) %]
88
				<option value="1" selected="selected">1/8</option>
88
				<option value="1" selected="selected">1/8</option>
Lines 129-135 Link Here
129
129
130
		       <td><label for="f6">Mean value of ground resolution</label></td>
130
		       <td><label for="f6">Mean value of ground resolution</label></td>
131
                <td>
131
                <td>
132
                        <select name="f6" id="f6" size="1">
132
                        <select name="f6" id="f6">
133
                        [% IF ( f6minus ) %]
133
                        [% IF ( f6minus ) %]
134
                                <option value="-" selected="selected">less than 1 centimetre</option>
134
                                <option value="-" selected="selected">less than 1 centimetre</option>
135
                        [% ELSE %]
135
                        [% ELSE %]
Lines 203-209 Link Here
203
                        [% END %]
203
                        [% END %]
204
                        </select>
204
                        </select>
205
                
205
                
206
			<select name="f7" id="f7" size="1">
206
            <select name="f7" id="f7">
207
			
207
			
208
			[% IF ( f7c ) %]
208
			[% IF ( f7c ) %]
209
				<option value="c" selected="selected">Centimetres</option>
209
				<option value="c" selected="selected">Centimetres</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_122.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Era identifier</label></td>
12
		<td><label for="f1">Era identifier</label></td>
13
		<td colspan="7">
13
		<td colspan="7">
14
		<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
                    [% IF ( f1c ) %]
15
                    [% IF ( f1c ) %]
16
                            <option value="c" selected="selected">   date falls before the year 1 in the Gregorian calendar, i.e. B.C.</option>
16
                            <option value="c" selected="selected">   date falls before the year 1 in the Gregorian calendar, i.e. B.C.</option>
17
                    [% ELSE %]
17
                    [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123a.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
	<tr>
10
	<tr>
11
        <td><label for="f1">Type of scale:</label></td>
11
        <td><label for="f1">Type of scale:</label></td>
12
		<td>
12
		<td>
13
			<select name="f1" id="f1" size="1">
13
            <select name="f1" id="f1">
14
			[% IF ( f1a ) %]
14
			[% IF ( f1a ) %]
15
				<option value="a" selected="selected">linear scale</option>
15
				<option value="a" selected="selected">linear scale</option>
16
			[% ELSE %]
16
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123d.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
	<tr>
10
	<tr>
11
		<td><label for="f1">Hemisphere:</label></td>
11
		<td><label for="f1">Hemisphere:</label></td>
12
		<td>
12
		<td>
13
			<select name="f1" id="f1" size="1">
13
            <select name="f1" id="f1">
14
14
15
			[% IF ( f1w ) %]
15
			[% IF ( f1w ) %]
16
				<option value="w" selected="selected">west</option>
16
				<option value="w" selected="selected">west</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123e.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
	<tr>
10
	<tr>
11
		<td><label for="f1">Hemisphere:</label></td>
11
		<td><label for="f1">Hemisphere:</label></td>
12
		<td>
12
		<td>
13
			<select name="f1" id="f1" size="1">
13
            <select name="f1" id="f1">
14
            
14
            
15
			[% IF ( f1w ) %]
15
			[% IF ( f1w ) %]
16
				<option value="w" selected="selected">west</option>
16
				<option value="w" selected="selected">west</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123f.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
	<tr>
10
	<tr>
11
		<td><label for="f1">Hemisphere:</label></td>
11
		<td><label for="f1">Hemisphere:</label></td>
12
		<td>
12
		<td>
13
			<select name="f1" id="f1" size="1">
13
            <select name="f1" id="f1">
14
            
14
            
15
			[% IF ( f1w ) %]
15
			[% IF ( f1w ) %]
16
				<option value="w" selected="selected">west</option>
16
				<option value="w" selected="selected">west</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123g.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
	<tr>
10
	<tr>
11
		<td><label for="f1">Hemisphere:</label></td>
11
		<td><label for="f1">Hemisphere:</label></td>
12
		<td>
12
		<td>
13
			<select name="f1" id="f1" size="1">
13
            <select name="f1" id="f1">
14
            
14
            
15
			[% IF ( f1w ) %]
15
			[% IF ( f1w ) %]
16
				<option value="w" selected="selected">west</option>
16
				<option value="w" selected="selected">west</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_123i_j.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
    <tr>
10
    <tr>
11
        <td><label for="f1">Hemisphere:</label></td>
11
        <td><label for="f1">Hemisphere:</label></td>
12
        <td>
12
        <td>
13
            <select name="f1" id="f1" size="1">
13
            <select name="f1" id="f1">
14
14
15
            [% IF ( f1n ) %]
15
            [% IF ( f1n ) %]
16
                <option value="+" selected="selected">north</option>
16
                <option value="+" selected="selected">north</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124a.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Character of image:</label></td>
12
        <td><label for="f1">Character of image:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1a ) %]
15
			[% IF ( f1a ) %]
16
				<option value="a" selected="selected">non-photographic image</option>
16
				<option value="a" selected="selected">non-photographic image</option>
17
			[% ELSE %]
17
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124b.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Form of cartographic item:</label></td>
12
        <td><label for="f1">Form of cartographic item:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
            
15
            
16
			[% IF ( f1a ) %]
16
			[% IF ( f1a ) %]
17
				<option value="a" selected="selected">atlas</option>
17
				<option value="a" selected="selected">atlas</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124c.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">  Presentation technique for photographic or non-photographic image:</label></td>
12
        <td><label for="f1">  Presentation technique for photographic or non-photographic image:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
15
16
			[% IF ( f1aa ) %]
16
			[% IF ( f1aa ) %]
17
				<option value="aa" selected="selected">anaglyphic</option>
17
				<option value="aa" selected="selected">anaglyphic</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124d.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Position of platform for photographic or remote sensing image:</label></td>
12
        <td><label for="f1">Position of platform for photographic or remote sensing image:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1a ) %]
15
			[% IF ( f1a ) %]
16
				<option value="a" selected="selected">terrestrial</option>
16
				<option value="a" selected="selected">terrestrial</option>
17
			[% ELSE %]
17
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124e.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Category of satellite for remote sensing image:</label></td>
12
        <td><label for="f1">Category of satellite for remote sensing image:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
15
16
			[% IF ( f1a ) %]
16
			[% IF ( f1a ) %]
17
				<option value="a" selected="selected">meteorological</option>
17
				<option value="a" selected="selected">meteorological</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124f.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Name of satellite for remote sensing image:</label></td>
12
        <td><label for="f1">Name of satellite for remote sensing image:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1aa ) %]
15
			[% IF ( f1aa ) %]
16
				<option value="aa" selected="selected">Tiros</option>
16
				<option value="aa" selected="selected">Tiros</option>
17
			[% ELSE %]
17
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_124g.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Recording technique for remote sensing image:</label></td>
12
        <td><label for="f1">Recording technique for remote sensing image:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
15
16
			[% IF ( f1aa ) %]
16
			[% IF ( f1aa ) %]
17
				<option value="aa" selected="selected">video recording</option>
17
				<option value="aa" selected="selected">video recording</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125a.tt (-2 / +2 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Type of score:</label></td>
12
        <td><label for="f1">Type of score:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1a ) %]
15
			[% IF ( f1a ) %]
16
				<option value="a" selected="selected">full score, graphic score</option>
16
				<option value="a" selected="selected">full score, graphic score</option>
17
			[% ELSE %]
17
			[% ELSE %]
Lines 97-103 Link Here
97
	<tr>
97
	<tr>
98
        <td><label for="f2">Parts indicator:</label></td>
98
        <td><label for="f2">Parts indicator:</label></td>
99
		<td>
99
		<td>
100
			<select name="f2" id="f2" size="1">
100
            <select name="f2" id="f2">
101
101
102
			[% IF ( f2a ) %]
102
			[% IF ( f2a ) %]
103
				<option value="a" selected="selected">parts exist (vocal and instrumental)</option>
103
				<option value="a" selected="selected">parts exist (vocal and instrumental)</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_125b.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Literary text indicator:</label></td>
12
        <td><label for="f1">Literary text indicator:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1space ) %]
15
			[% IF ( f1space ) %]
16
				<option value=" " selected="selected">non required value</option>
16
				<option value=" " selected="selected">non required value</option>
17
			[% ELSE %]
17
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126a.tt (-15 / +15 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Form of release:</label></td>
12
		<td><label for="f1">Form of release:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
15
16
			[% IF ( f1a ) %]
16
			[% IF ( f1a ) %]
17
				<option value="a" selected="selected">disc</option>
17
				<option value="a" selected="selected">disc</option>
Lines 63-69 Link Here
63
	<tr>
63
	<tr>
64
		<td><label for="f2">Speed:</label></td>
64
		<td><label for="f2">Speed:</label></td>
65
		<td>
65
		<td>
66
			<select name="f2" id="f2" size="1">
66
            <select name="f2" id="f2">
67
			[% IF ( f2u ) %]
67
			[% IF ( f2u ) %]
68
				<option value="u" selected="selected">unknown</option>
68
				<option value="u" selected="selected">unknown</option>
69
			[% ELSE %]
69
			[% ELSE %]
Lines 164-170 Link Here
164
	<tr>
164
	<tr>
165
		<td><label for="f3">Kind of sound:</label></td>
165
		<td><label for="f3">Kind of sound:</label></td>
166
		<td>
166
		<td>
167
			<select name="f3" id="f3" size="1">
167
            <select name="f3" id="f3">
168
			[% IF ( f3a ) %]
168
			[% IF ( f3a ) %]
169
				<option value="a" selected="selected">monoaural</option>
169
				<option value="a" selected="selected">monoaural</option>
170
			[% ELSE %]
170
			[% ELSE %]
Lines 195-201 Link Here
195
	<tr>
195
	<tr>
196
		<td><label for="f4">Groove width:</label></td>
196
		<td><label for="f4">Groove width:</label></td>
197
		<td>
197
		<td>
198
			<select name="f4" id="f4" size="1">
198
            <select name="f4" id="f4">
199
			[% IF ( f4a ) %]
199
			[% IF ( f4a ) %]
200
				<option value="a" selected="selected">coarse/standard</option>
200
				<option value="a" selected="selected">coarse/standard</option>
201
			[% ELSE %]
201
			[% ELSE %]
Lines 226-232 Link Here
226
	<tr>
226
	<tr>
227
		<td><label for="f5">Dimensions (sound recordings):</label></td>
227
		<td><label for="f5">Dimensions (sound recordings):</label></td>
228
		<td>
228
		<td>
229
			<select name="f5" id="f5" size="1">
229
            <select name="f5" id="f5">
230
			[% IF ( f5a ) %]
230
			[% IF ( f5a ) %]
231
				<option value="a" selected="selected">7.62cm or 3 in.</option>
231
				<option value="a" selected="selected">7.62cm or 3 in.</option>
232
			[% ELSE %]
232
			[% ELSE %]
Lines 302-308 Link Here
302
	<tr>
302
	<tr>
303
		<td><label for="f6">Tape width:</label></td>
303
		<td><label for="f6">Tape width:</label></td>
304
		<td>
304
		<td>
305
			<select name="f6" id="f6" size="1">
305
            <select name="f6" id="f6">
306
			
306
			
307
			[% IF ( f6a ) %]
307
			[% IF ( f6a ) %]
308
				<option value="a" selected="selected">1/4 in.</option>
308
				<option value="a" selected="selected">1/4 in.</option>
Lines 354-360 Link Here
354
	<tr>
354
	<tr>
355
		<td><label for="f7">Tape configuration:</label></td>
355
		<td><label for="f7">Tape configuration:</label></td>
356
		<td>
356
		<td>
357
			<select name="f7" id="f7" size="1">
357
            <select name="f7" id="f7">
358
			
358
			
359
			[% IF ( f7a ) %]
359
			[% IF ( f7a ) %]
360
				<option value="a" selected="selected">full track</option>
360
				<option value="a" selected="selected">full track</option>
Lines 416-422 Link Here
416
	<tr>
416
	<tr>
417
		<td><label for="f8">Accompanying textual material 1:</label></td>
417
		<td><label for="f8">Accompanying textual material 1:</label></td>
418
		<td>
418
		<td>
419
			<select name="f8" id="f8" size="1">
419
            <select name="f8" id="f8">
420
			[% IF ( f8space ) %]
420
			[% IF ( f8space ) %]
421
				<option value=" " selected="selected">non required value</option>
421
				<option value=" " selected="selected">non required value</option>
422
			[% ELSE %]
422
			[% ELSE %]
Lines 502-508 Link Here
502
	<tr>
502
	<tr>
503
		<td><label for="f9">Accompanying textual material 2:</label></td>
503
		<td><label for="f9">Accompanying textual material 2:</label></td>
504
		<td>
504
		<td>
505
			<select name="f9" id="f9" size="1">
505
            <select name="f9" id="f9">
506
			
506
			
507
			[% IF ( f9space ) %]
507
			[% IF ( f9space ) %]
508
				<option value=" " selected="selected">non required value</option>
508
				<option value=" " selected="selected">non required value</option>
Lines 589-595 Link Here
589
	<tr>
589
	<tr>
590
		<td><label for="f10">Accompanying textual material 3:</label></td>
590
		<td><label for="f10">Accompanying textual material 3:</label></td>
591
		<td>
591
		<td>
592
			<select name="f10" id="f10" size="1">
592
            <select name="f10" id="f10">
593
			
593
			
594
			[% IF ( f10space ) %]
594
			[% IF ( f10space ) %]
595
				<option value=" " selected="selected">non required value</option>
595
				<option value=" " selected="selected">non required value</option>
Lines 676-682 Link Here
676
	<tr>
676
	<tr>
677
		<td><label for="f11">Accompanying textual material 4:</label></td>
677
		<td><label for="f11">Accompanying textual material 4:</label></td>
678
		<td>
678
		<td>
679
			<select name="f11" id="f11" size="1">
679
            <select name="f11" id="f11">
680
			
680
			
681
			[% IF ( f11space ) %]
681
			[% IF ( f11space ) %]
682
				<option value=" " selected="selected">non required value</option>
682
				<option value=" " selected="selected">non required value</option>
Lines 763-769 Link Here
763
	<tr>
763
	<tr>
764
		<td><label for="f12">Accompanying textual material 5:</label></td>
764
		<td><label for="f12">Accompanying textual material 5:</label></td>
765
		<td>
765
		<td>
766
			<select name="f12" id="f12" size="1">
766
            <select name="f12" id="f12">
767
                        [% IF ( f12space ) %]
767
                        [% IF ( f12space ) %]
768
                            <option value=" " selected="selected">non required value</option>
768
                            <option value=" " selected="selected">non required value</option>
769
                        [% ELSE %]
769
                        [% ELSE %]
Lines 849-855 Link Here
849
	<tr>
849
	<tr>
850
		<td><label for="f13">Accompanying textual material 6:</label></td>
850
		<td><label for="f13">Accompanying textual material 6:</label></td>
851
		<td>
851
		<td>
852
			<select name="f13" id="f13" size="1">
852
            <select name="f13" id="f13">
853
                        [% IF ( f13space ) %]
853
                        [% IF ( f13space ) %]
854
                            <option value=" " selected="selected">non required value</option>
854
                            <option value=" " selected="selected">non required value</option>
855
                        [% ELSE %]
855
                        [% ELSE %]
Lines 936-942 Link Here
936
	<tr>
936
	<tr>
937
		<td><label for="f14">Recording technique:</label></td>
937
		<td><label for="f14">Recording technique:</label></td>
938
		<td>
938
		<td>
939
			<select name="f14" id="f14" size="1">
939
            <select name="f14" id="f14">
940
			[% IF ( f14a ) %]
940
			[% IF ( f14a ) %]
941
				<option value="a" selected="selected">acoustic</option>
941
				<option value="a" selected="selected">acoustic</option>
942
			[% ELSE %]
942
			[% ELSE %]
Lines 967-973 Link Here
967
	<tr>
967
	<tr>
968
		<td><label for="f15">Special reproduction characteristics:</label></td>
968
		<td><label for="f15">Special reproduction characteristics:</label></td>
969
		<td>
969
		<td>
970
			<select name="f15" id="f15" size="1">
970
            <select name="f15" id="f15">
971
			[% IF ( f15a ) %]
971
			[% IF ( f15a ) %]
972
				<option value="a" selected="selected">NAB standard</option>
972
				<option value="a" selected="selected">NAB standard</option>
973
			[% ELSE %]
973
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_126b.tt (-3 / +3 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Kind of disc, cylinder or tape:</label></td>
12
		<td><label for="f1">Kind of disc, cylinder or tape:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
15
16
			[% IF ( f1a ) %]
16
			[% IF ( f1a ) %]
17
				<option value="a" selected="selected">instantaneous (unique, cut on the spot)</option>
17
				<option value="a" selected="selected">instantaneous (unique, cut on the spot)</option>
Lines 68-74 Link Here
68
	<tr>
68
	<tr>
69
		<td><label for="f2">Kind of material:</label></td>
69
		<td><label for="f2">Kind of material:</label></td>
70
		<td>
70
		<td>
71
			<select name="f2" id="f2" size="1">
71
            <select name="f2" id="f2">
72
72
73
			[% IF ( f2u ) %]
73
			[% IF ( f2u ) %]
74
				<option value="u" selected="selected">unknown</option>
74
				<option value="u" selected="selected">unknown</option>
Lines 145-151 Link Here
145
	<tr>
145
	<tr>
146
		<td><label for="f3">Kind of cutting:</label></td>
146
		<td><label for="f3">Kind of cutting:</label></td>
147
		<td>
147
		<td>
148
			<select name="f3" id="f3" size="1">
148
            <select name="f3" id="f3">
149
			[% IF ( f3a ) %]
149
			[% IF ( f3a ) %]
150
				<option value="a" selected="selected">lateral or combined cutting</option>
150
				<option value="a" selected="selected">lateral or combined cutting</option>
151
			[% ELSE %]
151
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128a.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Form of musical work:</label></td>
12
        <td><label for="f1">Form of musical work:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1ai ) %]
15
			[% IF ( f1ai ) %]
16
				<option value="ai#" selected="selected">air</option>
16
				<option value="ai#" selected="selected">air</option>
17
			[% ELSE %]
17
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128b.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Instruments or voices for ensemble:</label></td>
12
		<td><label for="f1">Instruments or voices for ensemble:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1dblpipe ) %]
15
			[% IF ( f1dblpipe ) %]
16
		<option value="||" selected="selected">||- Filling characters</option>
16
		<option value="||" selected="selected">||- Filling characters</option>
17
            [% ELSE %]
17
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_128c.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Instruments or voices for soloists</label></td>
12
		<td><label for="f1">Instruments or voices for soloists</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1ba ) %]
15
			[% IF ( f1ba ) %]
16
				<option value="ba" selected="selected">Horn</option>
16
				<option value="ba" selected="selected">Horn</option>
17
			[% ELSE %]
17
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_130.tt (-8 / +8 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Specific material designation:</label></td>
12
        <td><label for="f1">Specific material designation:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1a ) %]
15
			[% IF ( f1a ) %]
16
				<option value="a" selected="selected">aperture card</option>
16
				<option value="a" selected="selected">aperture card</option>
17
			[% ELSE %]
17
			[% ELSE %]
Lines 62-68 Link Here
62
	<tr>
62
	<tr>
63
		<td><label for="f2">Polarity:</label></td>
63
		<td><label for="f2">Polarity:</label></td>
64
		<td>
64
		<td>
65
			<select name="f2" id="f2" size="1">
65
            <select name="f2" id="f2">
66
66
67
			[% IF ( f2a ) %]
67
			[% IF ( f2a ) %]
68
				<option value="a" selected="selected">positive</option>
68
				<option value="a" selected="selected">positive</option>
Lines 89-95 Link Here
89
	<tr>
89
	<tr>
90
		<td><label for="f3">Dimensions:</label></td>
90
		<td><label for="f3">Dimensions:</label></td>
91
		<td>
91
		<td>
92
			<select name="f3" id="f3" size="1">
92
            <select name="f3" id="f3">
93
93
94
			[% IF ( f3space ) %]
94
			[% IF ( f3space ) %]
95
				<option value=" " selected="selected">non required value</option>
95
				<option value=" " selected="selected">non required value</option>
Lines 156-162 Link Here
156
	<tr>
156
	<tr>
157
		<td><label for="f4">Reduction ratio:</label></td>
157
		<td><label for="f4">Reduction ratio:</label></td>
158
		<td>
158
		<td>
159
			<select name="f4" id="f4" size="1">		
159
            <select name="f4" id="f4">
160
			[% IF ( f4a ) %]
160
			[% IF ( f4a ) %]
161
				<option value="a" selected="selected">low reduction</option>
161
				<option value="a" selected="selected">low reduction</option>
162
			[% ELSE %]
162
			[% ELSE %]
Lines 203-209 value="[% f5 | html %]" /></td> Link Here
203
	<tr>
203
	<tr>
204
		<td><label for="f6">Color:</label></td>
204
		<td><label for="f6">Color:</label></td>
205
		<td>
205
		<td>
206
			<select name="f6" id="f6" size="1">
206
            <select name="f6" id="f6">
207
			[% IF ( f6a ) %]
207
			[% IF ( f6a ) %]
208
				<option value="a" selected="selected">monochrome</option>
208
				<option value="a" selected="selected">monochrome</option>
209
			[% ELSE %]
209
			[% ELSE %]
Lines 229-235 value="[% f5 | html %]" /></td> Link Here
229
	<tr>
229
	<tr>
230
		<td><label for="f7">Emulsion on film:</label></td>
230
		<td><label for="f7">Emulsion on film:</label></td>
231
		<td>
231
		<td>
232
			<select name="f7" id="f7" size="1">
232
            <select name="f7" id="f7">
233
			[% IF ( f7a ) %]
233
			[% IF ( f7a ) %]
234
				<option value="a" selected="selected">silver halide</option>
234
				<option value="a" selected="selected">silver halide</option>
235
			[% ELSE %]
235
			[% ELSE %]
Lines 270-276 value="[% f5 | html %]" /></td> Link Here
270
	<tr>
270
	<tr>
271
		<td><label for="f8">Generation:</label></td>
271
		<td><label for="f8">Generation:</label></td>
272
		<td>
272
		<td>
273
			<select name="f8" id="f8" size="1">
273
            <select name="f8" id="f8">
274
			[% IF ( f8a ) %]
274
			[% IF ( f8a ) %]
275
				<option value="a" selected="selected">first generation (Master)</option>
275
				<option value="a" selected="selected">first generation (Master)</option>
276
			[% ELSE %]
276
			[% ELSE %]
Lines 301-307 value="[% f5 | html %]" /></td> Link Here
301
	<tr>
301
	<tr>
302
		<td><label for="f9">Base of film:</label></td>
302
		<td><label for="f9">Base of film:</label></td>
303
		<td>
303
		<td>
304
			<select name="f9" id="f9" size="1">
304
            <select name="f9" id="f9">
305
			[% IF ( f9a ) %]
305
			[% IF ( f9a ) %]
306
				<option value="a" selected="selected">safety base</option>
306
				<option value="a" selected="selected">safety base</option>
307
			[% ELSE %]
307
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_135a.tt (-1 / +1 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Type of electronic resource:</label></td>
12
		<td><label for="f1">Type of electronic resource:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
            
15
            
16
			[% IF ( f1space ) %]
16
			[% IF ( f1space ) %]
17
				<option value=" " selected="selected">non required value</option>
17
				<option value=" " selected="selected">non required value</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_140.tt (-21 / +21 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
		<td><label for="f1">Illustration - Book 1:</label></td>
12
		<td><label for="f1">Illustration - Book 1:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
			[% IF ( f1space ) %]
15
			[% IF ( f1space ) %]
16
				<option value=" " selected="selected">non required value</option>
16
				<option value=" " selected="selected">non required value</option>
17
			[% ELSE %]
17
			[% ELSE %]
Lines 106-112 Link Here
106
		</td>
106
		</td>
107
		<td><label for="f2">Illustration - Book 2:</label></td>
107
		<td><label for="f2">Illustration - Book 2:</label></td>
108
		<td>
108
		<td>
109
			<select name="f2" id="f2" size="1">
109
            <select name="f2" id="f2">
110
			[% IF ( f2space ) %]
110
			[% IF ( f2space ) %]
111
				<option value=" " selected="selected">non required value</option>
111
				<option value=" " selected="selected">non required value</option>
112
			[% ELSE %]
112
			[% ELSE %]
Lines 202-208 Link Here
202
		<tr>
202
		<tr>
203
		<td><label for="f3">Illustration - Book 3:</label></td>
203
		<td><label for="f3">Illustration - Book 3:</label></td>
204
		<td>
204
		<td>
205
			<select name="f3" id="f3" size="1">
205
            <select name="f3" id="f3">
206
			[% IF ( f3space ) %]
206
			[% IF ( f3space ) %]
207
				<option value=" " selected="selected">non required value</option>
207
				<option value=" " selected="selected">non required value</option>
208
			[% ELSE %]
208
			[% ELSE %]
Lines 297-303 Link Here
297
		</td>
297
		</td>
298
		<td><label for="f4">Illustration - Book 4:</label></td>
298
		<td><label for="f4">Illustration - Book 4:</label></td>
299
		<td>
299
		<td>
300
			<select name="f4" id="f4" size="1">
300
            <select name="f4" id="f4">
301
            
301
            
302
			[% IF ( f4space ) %]
302
			[% IF ( f4space ) %]
303
				<option value=" " selected="selected">non required value</option>
303
				<option value=" " selected="selected">non required value</option>
Lines 394-400 Link Here
394
	<tr>
394
	<tr>
395
        <td><label for="f5">Illustration - Full page plates 1:</label></td>
395
        <td><label for="f5">Illustration - Full page plates 1:</label></td>
396
		<td>
396
		<td>
397
			<select name="f5" id="f5" size="1">
397
            <select name="f5" id="f5">
398
            
398
            
399
			[% IF ( f5space ) %]
399
			[% IF ( f5space ) %]
400
				<option value=" " selected="selected">non required value</option>
400
				<option value=" " selected="selected">non required value</option>
Lines 465-471 Link Here
465
		</td>
465
		</td>
466
        <td><label for="f6">Illustration - Full page plates 2:</label></td>
466
        <td><label for="f6">Illustration - Full page plates 2:</label></td>
467
		<td>
467
		<td>
468
			<select name="f6" id="f6" size="1">
468
            <select name="f6" id="f6">
469
            
469
            
470
			[% IF ( f6space ) %]
470
			[% IF ( f6space ) %]
471
				<option value=" " selected="selected">non required value</option>
471
				<option value=" " selected="selected">non required value</option>
Lines 537-543 Link Here
537
		<tr>
537
		<tr>
538
        <td><label for="f7">Illustration - Full page plates 3:</label></td>
538
        <td><label for="f7">Illustration - Full page plates 3:</label></td>
539
		<td>
539
		<td>
540
			<select name="f7" id="f7" size="1">
540
            <select name="f7" id="f7">
541
            
541
            
542
			[% IF ( f7space ) %]
542
			[% IF ( f7space ) %]
543
				<option value=" " selected="selected">non required value</option>
543
				<option value=" " selected="selected">non required value</option>
Lines 608-614 Link Here
608
		</td>
608
		</td>
609
        <td><label for="f8">Illustration - Full page plates 4:</label></td>
609
        <td><label for="f8">Illustration - Full page plates 4:</label></td>
610
		<td>
610
		<td>
611
			<select name="f8" id="f8" size="1">
611
            <select name="f8" id="f8">
612
            
612
            
613
			[% IF ( f8space ) %]
613
			[% IF ( f8space ) %]
614
				<option value=" " selected="selected">non required value</option>
614
				<option value=" " selected="selected">non required value</option>
Lines 679-685 Link Here
679
		</td></tr>
679
		</td></tr>
680
<tr>		<td><label for="f9">Illustration - Technique:</label></td>
680
<tr>		<td><label for="f9">Illustration - Technique:</label></td>
681
		<td>
681
		<td>
682
			<select name="f9" id="f9" size="1">
682
            <select name="f9" id="f9">
683
            
683
            
684
			[% IF ( f9space ) %]
684
			[% IF ( f9space ) %]
685
				<option value=" " selected="selected">non required value</option>
685
				<option value=" " selected="selected">non required value</option>
Lines 732-738 Link Here
732
		<tr>
732
		<tr>
733
        <td><label for="f10">Form of contents 1:</label></td>
733
        <td><label for="f10">Form of contents 1:</label></td>
734
		<td>
734
		<td>
735
			<select name="f10" id="f10" size="1">
735
            <select name="f10" id="f10">
736
            
736
            
737
			[% IF ( f10dblspace ) %]
737
			[% IF ( f10dblspace ) %]
738
				<option value="  " selected="selected">non required value</option>
738
				<option value="  " selected="selected">non required value</option>
Lines 888-894 Link Here
888
		</td>
888
		</td>
889
        <td><label for="f11">Form of contents 2:</label></td>
889
        <td><label for="f11">Form of contents 2:</label></td>
890
		<td>
890
		<td>
891
			<select name="f11" id="f11" size="1">
891
            <select name="f11" id="f11">
892
            
892
            
893
			[% IF ( f11dblspace ) %]
893
			[% IF ( f11dblspace ) %]
894
				<option value="  " selected="selected">non required value</option>
894
				<option value="  " selected="selected">non required value</option>
Lines 1046-1052 Link Here
1046
			<tr>
1046
			<tr>
1047
            <td><label for="f12">Form of contents 3:</label></td>
1047
            <td><label for="f12">Form of contents 3:</label></td>
1048
			<td>
1048
			<td>
1049
			<select name="f12" id="f12" size="1">
1049
            <select name="f12" id="f12">
1050
            
1050
            
1051
			[% IF ( f12dblspace ) %]
1051
			[% IF ( f12dblspace ) %]
1052
				<option value="  " selected="selected">non required value</option>
1052
				<option value="  " selected="selected">non required value</option>
Lines 1202-1208 Link Here
1202
		</td>
1202
		</td>
1203
        <td><label for="f13">Form of contents 4:</label></td>
1203
        <td><label for="f13">Form of contents 4:</label></td>
1204
		<td>
1204
		<td>
1205
			<select name="f13" id="f13" size="1">
1205
            <select name="f13" id="f13">
1206
            
1206
            
1207
			[% IF ( f13dblspace ) %]
1207
			[% IF ( f13dblspace ) %]
1208
				<option value="  " selected="selected">non required value</option>
1208
				<option value="  " selected="selected">non required value</option>
Lines 1358-1364 Link Here
1358
		</td></tr>
1358
		</td></tr>
1359
<tr>		<td><label for="f14">Literature:</label></td>
1359
<tr>		<td><label for="f14">Literature:</label></td>
1360
		<td>
1360
		<td>
1361
			<select name="f14" id="f14" size="1">
1361
            <select name="f14" id="f14">
1362
1362
1363
			[% IF ( f14dblspace ) %]
1363
			[% IF ( f14dblspace ) %]
1364
				<option value="  " selected="selected">non required value</option>
1364
				<option value="  " selected="selected">non required value</option>
Lines 1527-1533 Link Here
1527
		</td>
1527
		</td>
1528
		<td><label for="f15">Biography:</label></td>
1528
		<td><label for="f15">Biography:</label></td>
1529
		<td>
1529
		<td>
1530
			<select name="f15" id="f15" size="1">
1530
            <select name="f15" id="f15">
1531
1531
1532
			[% IF ( f15space ) %]
1532
			[% IF ( f15space ) %]
1533
				<option value=" " selected="selected">non required value</option>
1533
				<option value=" " selected="selected">non required value</option>
Lines 1570-1576 Link Here
1570
	<tr>
1570
	<tr>
1571
        <td><label for="f16">Support material - Book:</label></td>
1571
        <td><label for="f16">Support material - Book:</label></td>
1572
		<td>
1572
		<td>
1573
			<select name="f16" id="f16" size="1">
1573
            <select name="f16" id="f16">
1574
1574
1575
			[% IF ( f16space ) %]
1575
			[% IF ( f16space ) %]
1576
				<option value=" " selected="selected">non required value</option>
1576
				<option value=" " selected="selected">non required value</option>
Lines 1611-1617 Link Here
1611
		</td>
1611
		</td>
1612
        <td><label for="f17">Support material - Plates:</label></td>
1612
        <td><label for="f17">Support material - Plates:</label></td>
1613
		<td>
1613
		<td>
1614
			<select name="f17" id="f17" size="1">
1614
            <select name="f17" id="f17">
1615
1615
1616
         		[% IF ( f17space ) %]
1616
         		[% IF ( f17space ) %]
1617
				<option value=" " selected="selected">non required value</option>
1617
				<option value=" " selected="selected">non required value</option>
Lines 1655-1661 Link Here
1655
	<tr>
1655
	<tr>
1656
		<td><label for="f18">Watermark:</label></td>
1656
		<td><label for="f18">Watermark:</label></td>
1657
		<td>
1657
		<td>
1658
			<select name="f18" id="f18" size="1">
1658
            <select name="f18" id="f18">
1659
1659
1660
			[% IF ( f180 ) %]
1660
			[% IF ( f180 ) %]
1661
				<option value="0" selected="selected">paper does not contain watermark</option>
1661
				<option value="0" selected="selected">paper does not contain watermark</option>
Lines 1671-1677 Link Here
1671
		</td>
1671
		</td>
1672
        <td><label for="f19">Printer's device:</label></td>
1672
        <td><label for="f19">Printer's device:</label></td>
1673
		<td>
1673
		<td>
1674
			<select name="f19" id="f19" size="1">
1674
            <select name="f19" id="f19">
1675
1675
1676
			[% IF ( f190 ) %]
1676
			[% IF ( f190 ) %]
1677
				<option value="0" selected="selected">printer's device not present</option>
1677
				<option value="0" selected="selected">printer's device not present</option>
Lines 1689-1695 Link Here
1689
	<tr>
1689
	<tr>
1690
        <td><label for="f20">Publisher's device:</label></td>
1690
        <td><label for="f20">Publisher's device:</label></td>
1691
		<td>
1691
		<td>
1692
			<select name="f20" id="f20" size="1">
1692
            <select name="f20" id="f20">
1693
1693
1694
			[% IF ( f200 ) %]
1694
			[% IF ( f200 ) %]
1695
				<option value="0" selected="selected">publisher's device not present</option>
1695
				<option value="0" selected="selected">publisher's device not present</option>
Lines 1705-1711 Link Here
1705
		</td>
1705
		</td>
1706
        <td><label for="f21">Ornamental device:</label></td>
1706
        <td><label for="f21">Ornamental device:</label></td>
1707
		<td>
1707
		<td>
1708
			<select name="f21" id="f21" size="1">
1708
            <select name="f21" id="f21">
1709
1709
1710
			[% IF ( f210 ) %]
1710
			[% IF ( f210 ) %]
1711
				<option value="0" selected="selected">ornamental device not present</option>
1711
				<option value="0" selected="selected">ornamental device not present</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_141.tt (-8 / +8 lines)
Lines 11-17 Link Here
11
	<tr>
11
	<tr>
12
        <td><label for="f1">Binding material 1:</label></td>
12
        <td><label for="f1">Binding material 1:</label></td>
13
		<td>
13
		<td>
14
			<select name="f1" id="f1" size="1">
14
            <select name="f1" id="f1">
15
            
15
            
16
			[% IF ( f1 ) %]
16
			[% IF ( f1 ) %]
17
                <option value=" " selected="selected">non required value</option>
17
                <option value=" " selected="selected">non required value</option>
Lines 67-73 Link Here
67
		</td></tr>	<tr>
67
		</td></tr>	<tr>
68
        <td><label for="f2">Binding material 2:</label></td>
68
        <td><label for="f2">Binding material 2:</label></td>
69
		<td>
69
		<td>
70
			<select name="f2" id="f2" size="1">
70
            <select name="f2" id="f2">
71
            
71
            
72
			[% IF ( f2 ) %]
72
			[% IF ( f2 ) %]
73
                <option value=" " selected="selected">non required value</option>
73
                <option value=" " selected="selected">non required value</option>
Lines 124-130 Link Here
124
                <tr>
124
                <tr>
125
        <td><label for="f3">Binding material 3:</label></td>
125
        <td><label for="f3">Binding material 3:</label></td>
126
		<td>
126
		<td>
127
			<select name="f3" id="f3" size="1">
127
            <select name="f3" id="f3">
128
                        [% IF ( f3 ) %]
128
                        [% IF ( f3 ) %]
129
                                <option value=" " selected="selected">non required value</option>
129
                                <option value=" " selected="selected">non required value</option>
130
                        [% ELSE %]
130
                        [% ELSE %]
Lines 180-186 Link Here
180
		<tr>
180
		<tr>
181
        <td><label for="f4">Types of binding:</label></td>
181
        <td><label for="f4">Types of binding:</label></td>
182
		<td>
182
		<td>
183
			<select name="f4" id="f4" size="1">
183
            <select name="f4" id="f4">
184
184
185
			[% IF ( f4a ) %]
185
			[% IF ( f4a ) %]
186
                <option value="a" selected="selected">original, i.e. primary</option>
186
                <option value="a" selected="selected">original, i.e. primary</option>
Lines 226-232 Link Here
226
		</td></tr>	<tr>
226
		</td></tr>	<tr>
227
        <td><label for="f5">Bound with:</label></td>
227
        <td><label for="f5">Bound with:</label></td>
228
		<td>
228
		<td>
229
			<select name="f5" id="f5" size="1">
229
            <select name="f5" id="f5">
230
230
231
			[% IF ( f50 ) %]
231
			[% IF ( f50 ) %]
232
                <option value="0" selected="selected">single item</option>
232
                <option value="0" selected="selected">single item</option>
Lines 242-248 Link Here
242
		</td></tr><tr>
242
		</td></tr><tr>
243
    <td><label for="f6">State of preservation - Binding:</label></td>
243
    <td><label for="f6">State of preservation - Binding:</label></td>
244
		<td>
244
		<td>
245
			<select name="f6" id="f6" size="1">
245
            <select name="f6" id="f6">
246
246
247
			[% IF ( f6a ) %]
247
			[% IF ( f6a ) %]
248
                <option value="a" selected="selected">excellent</option>
248
                <option value="a" selected="selected">excellent</option>
Lines 283-289 Link Here
283
</td></tr><tr>
283
</td></tr><tr>
284
    <td><label for="f7">State of preservation - Body of the book 1 :</label></td>
284
    <td><label for="f7">State of preservation - Body of the book 1 :</label></td>
285
		<td>
285
		<td>
286
			<select name="f7" id="f7" size="1">
286
            <select name="f7" id="f7">
287
287
288
			[% IF ( f7a ) %]
288
			[% IF ( f7a ) %]
289
                <option value="a" selected="selected">excellent</option>
289
                <option value="a" selected="selected">excellent</option>
Lines 324-330 Link Here
324
</td></tr><tr>
324
</td></tr><tr>
325
    <td><label for="f8">State of preservation - Body of the book 2 :</label></td>
325
    <td><label for="f8">State of preservation - Body of the book 2 :</label></td>
326
		<td>
326
		<td>
327
			<select name="f8" id="f8" size="1">
327
            <select name="f8" id="f8">
328
328
329
			[% IF ( f8a ) %]
329
			[% IF ( f8a ) %]
330
                <option value="a" selected="selected">excellent</option>
330
                <option value="a" selected="selected">excellent</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_225a.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
        <form name="f_pop" onsubmit="report()" action="">
10
        <form name="f_pop" onsubmit="report()" action="">
11
            <h2 class="authority">Collection</h2>
11
            <h2 class="authority">Collection</h2>
12
            <p><label>Select a collection</label>
12
            <p><label>Select a collection</label>
13
                <select name="f1" id="f1" size="1">
13
                <select name="f1" id="f1">
14
                [% FOREACH value IN collection.values %]
14
                [% FOREACH value IN collection.values %]
15
                  [% IF ( value == collection.default ) %]
15
                  [% IF ( value == collection.default ) %]
16
                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
16
                    <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_field_700-4.tt (-1 / +1 lines)
Lines 10-16 Link Here
10
<form name="f_pop" onsubmit="report()" action="">
10
<form name="f_pop" onsubmit="report()" action="">
11
<table>
11
<table>
12
	<tr>
12
	<tr>
13
		<td><label for="f1">Code date publication </label></td><td><select name="f1" id="f1" size="1">
13
        <td><label for="f1">Code date publication </label></td><td><select name="f1" id="f1">
14
			[% IF ( f1_075 ) %]
14
			[% IF ( f1_075 ) %]
15
			<option value="075 - postface" selected="selected">postface</option>
15
			<option value="075 - postface" selected="selected">postface</option>
16
			[% ELSE %]
16
			[% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/value_builder/unimarc_leader.tt (-6 / +6 lines)
Lines 15-21 Link Here
15
	<tr>
15
	<tr>
16
		<td><label for="f5">5- Record status</label></td>
16
		<td><label for="f5">5- Record status</label></td>
17
		<td>
17
		<td>
18
			<select name="f5" id="f5" size="1">
18
            <select name="f5" id="f5">
19
			[% IF ( f5pipe ) %]
19
			[% IF ( f5pipe ) %]
20
            	<option value="|" selected="selected">|- Filling character</option>
20
            	<option value="|" selected="selected">|- Filling character</option>
21
            [% ELSE %]
21
            [% ELSE %]
Lines 53-59 Link Here
53
	<tr>
53
	<tr>
54
		<td><label for="f6">6- Type of record</label></td>
54
		<td><label for="f6">6- Type of record</label></td>
55
		<td>
55
		<td>
56
			<select name="f6" id="f6" size="1">
56
            <select name="f6" id="f6">
57
			[% IF ( f6pipe ) %]
57
			[% IF ( f6pipe ) %]
58
            	<option value="|" selected="selected">|- Filling character</option>
58
            	<option value="|" selected="selected">|- Filling character</option>
59
            [% ELSE %]
59
            [% ELSE %]
Lines 144-150 Link Here
144
	<tr>
144
	<tr>
145
		<td><label for="f7">7- Bibliographic level</label></td>
145
		<td><label for="f7">7- Bibliographic level</label></td>
146
		<td>
146
		<td>
147
			<select name="f7" id="f7" size="1">
147
            <select name="f7" id="f7">
148
			[% IF ( f7pipe ) %]
148
			[% IF ( f7pipe ) %]
149
            	<option value="|" selected="selected">|- Filling character</option>
149
            	<option value="|" selected="selected">|- Filling character</option>
150
            [% ELSE %]
150
            [% ELSE %]
Lines 183-189 Link Here
183
	<tr>
183
	<tr>
184
		<td><label for="f8">8- Hierarchical level code</label></td>
184
		<td><label for="f8">8- Hierarchical level code</label></td>
185
		<td>
185
		<td>
186
			<select name="f8" id="f8" size="1">
186
            <select name="f8" id="f8">
187
			[% IF ( f8pipe ) %]
187
			[% IF ( f8pipe ) %]
188
            	<option value="|" selected="selected">|- Filling character</option>
188
            	<option value="|" selected="selected">|- Filling character</option>
189
            [% ELSE %]
189
            [% ELSE %]
Lines 225-231 Link Here
225
	<tr>
225
	<tr>
226
		<td><label for="f17">17- Encoding level</label></td>
226
		<td><label for="f17">17- Encoding level</label></td>
227
		<td>
227
		<td>
228
			<select name="f17" id="f17" size="1">
228
            <select name="f17" id="f17">
229
			[% IF ( f17pipe ) %]
229
			[% IF ( f17pipe ) %]
230
            	<option value="|" selected="selected">|- Filling character</option>
230
            	<option value="|" selected="selected">|- Filling character</option>
231
            [% ELSE %]
231
            [% ELSE %]
Lines 259-265 Link Here
259
	<tr>
259
	<tr>
260
		<td><label for="f18">18- Descriptive cataloging form</label></td>
260
		<td><label for="f18">18- Descriptive cataloging form</label></td>
261
		<td>
261
		<td>
262
			<select name="f18" id="f18" size="1">
262
            <select name="f18" id="f18">
263
			[% IF ( f18pipe ) %]
263
			[% IF ( f18pipe ) %]
264
            	<option value="|" selected="selected">|- Filling character</option>
264
            	<option value="|" selected="selected">|- Filling character</option>
265
            [% ELSE %]
265
            [% ELSE %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-1 / +1 lines)
Lines 145-151 Link Here
145
    </li>
145
    </li>
146
146
147
    <li><label>Patron flags:</label>
147
    <li><label>Patron flags:</label>
148
        <select name="borflag" size="1" id="borflag">
148
        <select name="borflag" id="borflag">
149
            <option value="">None</option>
149
            <option value="">None</option>
150
            [% IF ( borflag_gonenoaddress ) %]<option value="gonenoaddress" selected="selected">Address in question</option>
150
            [% IF ( borflag_gonenoaddress ) %]<option value="gonenoaddress" selected="selected">Address in question</option>
151
            [% ELSE %]<option value="gonenoaddress">Address in question</option>[% END %]
151
            [% ELSE %]<option value="gonenoaddress">Address in question</option>[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/memberentrygen.tt (-1 / +1 lines)
Lines 817-823 legend:hover { Link Here
817
                                        [% UNLESS nobranchcode %]
817
                                        [% UNLESS nobranchcode %]
818
                                            <li>
818
                                            <li>
819
                                                <label for="libraries" class="required">Library:</label>
819
                                                <label for="libraries" class="required">Library:</label>
820
                                                <select name="branchcode" size="1" id="libraries">
820
                                                <select name="branchcode" id="libraries">
821
                                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => userbranch, only_from_group => 1 ) %]
821
                                                    [% PROCESS options_for_libraries libraries => Branches.all( selected => userbranch, only_from_group => 1 ) %]
822
                                                </select>
822
                                                </select>
823
                                                <span class="required">Required</span>
823
                                                <span class="required">Required</span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt (-1 / +1 lines)
Lines 50-56 Link Here
50
50
51
                                <!--require a foreach loop to get all the values for the library that the user has either imported (in web installer) or created in the first step of this onboarding tool-->
51
                                <!--require a foreach loop to get all the values for the library that the user has either imported (in web installer) or created in the first step of this onboarding tool-->
52
                                <label for="libraries" class="required"> Library: </label>
52
                                <label for="libraries" class="required"> Library: </label>
53
                                <select name="libraries" size="1" id="libraries">
53
                                <select name="libraries" id="libraries">
54
                                    [% FOREACH library IN libraries %]
54
                                    [% FOREACH library IN libraries %]
55
                                        <option value="[% library.branchcode | html %]"> [% library.branchname | html %] </option>
55
                                        <option value="[% library.branchcode | html %]"> [% library.branchname | html %] </option>
56
                                    [% END %]
56
                                    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/acquisitions_stats.tt (-6 / +6 lines)
Lines 188-194 Link Here
188
				<td><input type="radio" name="Line" value="biblioitems.itemtype" /></td>
188
				<td><input type="radio" name="Line" value="biblioitems.itemtype" /></td>
189
				<td><input type="radio" name="Column" value="biblioitems.itemtype" /></td>
189
				<td><input type="radio" name="Column" value="biblioitems.itemtype" /></td>
190
                <td>
190
                <td>
191
                    <select name="Filter" size="1" id="itemtypes">
191
                    <select name="Filter" id="itemtypes">
192
                        <option value="">All item types</option>
192
                        <option value="">All item types</option>
193
                        [% FOREACH itemtype IN itemtypes %]
193
                        [% FOREACH itemtype IN itemtypes %]
194
                        <option value="[% itemtype.itemtype | html %]">[% itemtype.translated_description | html %]</option>
194
                        <option value="[% itemtype.itemtype | html %]">[% itemtype.translated_description | html %]</option>
Lines 202-208 Link Here
202
				<td><input type="radio" name="Line" value="aqbudgets.budget_code" /></td>
202
				<td><input type="radio" name="Line" value="aqbudgets.budget_code" /></td>
203
				<td><input type="radio" name="Column" value="aqbudgets.budget_code" /></td>
203
				<td><input type="radio" name="Column" value="aqbudgets.budget_code" /></td>
204
                <td>
204
                <td>
205
                    <select name="Filter" size="1" id="budget">
205
                    <select name="Filter" id="budget">
206
                        <option value="">All funds</option>
206
                        <option value="">All funds</option>
207
                        [% FOREACH value IN Budgets.values %]
207
                        [% FOREACH value IN Budgets.values %]
208
                        <option value="[% value | html %]">[% Budgets.labels.$value | html %]</option>
208
                        <option value="[% value | html %]">[% Budgets.labels.$value | html %]</option>
Lines 217-223 Link Here
217
					<td><input type="radio" name="Line" value="aqorders.sort1" /></td>
217
					<td><input type="radio" name="Line" value="aqorders.sort1" /></td>
218
					<td><input type="radio" name="Column" value="aqorders.sort1" /></td>
218
					<td><input type="radio" name="Column" value="aqorders.sort1" /></td>
219
                    <td>
219
                    <td>
220
                        <select name="Filter" size="1" id="sort1">
220
                        <select name="Filter" id="sort1">
221
                            <option value="">All</option>
221
                            <option value="">All</option>
222
                            [% FOREACH value IN Sort1.values %]
222
                            [% FOREACH value IN Sort1.values %]
223
                            <option value="[% value | html %]">[% Sort1.labels.$value | html %]</option>
223
                            <option value="[% value | html %]">[% Sort1.labels.$value | html %]</option>
Lines 232-238 Link Here
232
					<td><input type="radio" name="Line" value="aqorders.sort2" /></td>
232
					<td><input type="radio" name="Line" value="aqorders.sort2" /></td>
233
					<td><input type="radio" name="Column" value="aqorders.sort2" /></td>
233
					<td><input type="radio" name="Column" value="aqorders.sort2" /></td>
234
                    <td>
234
                    <td>
235
                        <select name="Filter" size="1" id="sort2">
235
                        <select name="Filter" id="sort2">
236
                            <option value="">All</option>
236
                            <option value="">All</option>
237
                            [% FOREACH value IN Sort2.values %]
237
                            [% FOREACH value IN Sort2.values %]
238
                            <option value="[% value | html %]">[% Sort2.labels.$value | html %]</option>
238
                            <option value="[% value | html %]">[% Sort2.labels.$value | html %]</option>
Lines 276-285 Link Here
276
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
276
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
277
            <label class="inline" for="basename">Named: </label> <input type="text" name="basename" id="basename" value="Export" />
277
            <label class="inline" for="basename">Named: </label> <input type="text" name="basename" id="basename" value="Export" />
278
            <label class="inline" for="MIME">Into an application:</label>
278
            <label class="inline" for="MIME">Into an application:</label>
279
            <select name="MIME" id="MIME" size="1">
279
            <select name="MIME" id="MIME">
280
                <option value="CSV">CSV</option>
280
                <option value="CSV">CSV</option>
281
            </select>
281
            </select>
282
            <select name="sep" id="sep" size="1">
282
            <select name="sep" id="sep">
283
            [% FOREACH value IN CGIsepChoice.values.sort() %]
283
            [% FOREACH value IN CGIsepChoice.values.sort() %]
284
              [% IF ( value == CGIsepChoice.default ) %]
284
              [% IF ( value == CGIsepChoice.default ) %]
285
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
285
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/bor_issues_top.tt (-1 / +1 lines)
Lines 160-166 Link Here
160
			[% END %]
160
			[% END %]
161
			</select>
161
			</select>
162
			<label class="inline" for="sep">Delimiter: </label>
162
			<label class="inline" for="sep">Delimiter: </label>
163
            <select name="sep" id="sep" size="1">
163
            <select name="sep" id="sep">
164
            [% FOREACH value IN CGIseplist.values.sort() %]
164
            [% FOREACH value IN CGIseplist.values.sort() %]
165
              [% IF ( value == CGIseplist.default ) %]
165
              [% IF ( value == CGIseplist.default ) %]
166
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
166
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_out.tt (-2 / +2 lines)
Lines 91-102 Link Here
91
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
91
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
92
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
92
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
93
            <label class="inline" for="MIME">Into an application:</label>
93
            <label class="inline" for="MIME">Into an application:</label>
94
            <select name="MIME" id="MIME" size="1">
94
            <select name="MIME" id="MIME">
95
            [% FOREACH value IN CGIextChoice %]
95
            [% FOREACH value IN CGIextChoice %]
96
                <option value="[% value | html %]">[% value | html %]</option>
96
                <option value="[% value | html %]">[% value | html %]</option>
97
            [% END %]
97
            [% END %]
98
            </select>
98
            </select>
99
            <select name="sep" id="sep" size="1">
99
            <select name="sep" id="sep">
100
            [% FOREACH value IN CGIsepChoice.values.sort() %]
100
            [% FOREACH value IN CGIsepChoice.values.sort() %]
101
              [% IF ( value == CGIsepChoice.default ) %]
101
              [% IF ( value == CGIsepChoice.default ) %]
102
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
102
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt (-8 / +8 lines)
Lines 80-86 Link Here
80
			<td><input type="radio" name="Line" value="categorycode" /></td>
80
			<td><input type="radio" name="Line" value="categorycode" /></td>
81
            <td><input type="radio" checked="checked" name="Column" value="categorycode" /></td>
81
            <td><input type="radio" checked="checked" name="Column" value="categorycode" /></td>
82
            <td>
82
            <td>
83
                <select name="Filter"  size="1" id="catcode">
83
                <select name="Filter" id="catcode">
84
                    <option value=""></option>
84
                    <option value=""></option>
85
                    [% FOREACH patron_category IN patron_categories %]
85
                    [% FOREACH patron_category IN patron_categories %]
86
                        <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
86
                        <option value="[% patron_category.categorycode | html %]">[% patron_category.description | html %]</option>
Lines 109-115 Link Here
109
            <td rowspan="2">ZIP/Postal code</td>
109
            <td rowspan="2">ZIP/Postal code</td>
110
			<td><input type="radio" name="Line" value="zipcode" /></td>
110
			<td><input type="radio" name="Line" value="zipcode" /></td>
111
			<td><input type="radio" name="Column" value="zipcode" /></td>
111
			<td><input type="radio" name="Column" value="zipcode" /></td>
112
			<td><select name="Filter"  size="1" id="zipcode">
112
            <td><select name="Filter" id="zipcode">
113
				<option value=""> </option>
113
				<option value=""> </option>
114
				[% FOREACH ZIP_LOO IN ZIP_LOOP %]
114
				[% FOREACH ZIP_LOO IN ZIP_LOOP %]
115
				<option value="[% ZIP_LOO.zipcode | html %]">[% ZIP_LOO.zipcode | html %]</option>
115
				<option value="[% ZIP_LOO.zipcode | html %]">[% ZIP_LOO.zipcode | html %]</option>
Lines 141-147 Link Here
141
            <td><input type="radio" checked="checked" name="Line"   value="branchcode" /></td>
141
            <td><input type="radio" checked="checked" name="Line"   value="branchcode" /></td>
142
			<td><input type="radio" name="Column" value="branchcode" /></td>
142
			<td><input type="radio" name="Column" value="branchcode" /></td>
143
			<td>
143
			<td>
144
                <select name="Filter"  size="1" id="branch">
144
                <select name="Filter" id="branch">
145
                <option value=""></option>
145
                <option value=""></option>
146
                [% FOREACH l IN Branches.all( unfiltered => 1 ) %]
146
                [% FOREACH l IN Branches.all( unfiltered => 1 ) %]
147
                    <option value="[% l.branchcode | html %]">[% l.branchcode | html %] - [% l.branchname || 'UNKNOWN' | html %]</option>
147
                    <option value="[% l.branchcode | html %]">[% l.branchcode | html %] - [% l.branchname || 'UNKNOWN' | html %]</option>
Lines 162-168 Link Here
162
                <td><input type="radio" name="Line" value="sex" /></td>
162
                <td><input type="radio" name="Line" value="sex" /></td>
163
                <td><input type="radio" name="Column" value="sex" /></td>
163
                <td><input type="radio" name="Column" value="sex" /></td>
164
                <td>
164
                <td>
165
                    <select id="sex" size="1" name="Filter">
165
                    <select id="sex" name="Filter">
166
                        <option value="" />
166
                        <option value="" />
167
                        <option value="M">Men</option>
167
                        <option value="M">Men</option>
168
                        <option value="F">Women</option>
168
                        <option value="F">Women</option>
Lines 175-181 Link Here
175
				<td><input type="radio" name="Line" value="sort1" /></td>
175
				<td><input type="radio" name="Line" value="sort1" /></td>
176
				<td><input type="radio" name="Column" value="sort1" /></td>
176
				<td><input type="radio" name="Column" value="sort1" /></td>
177
				<td>
177
				<td>
178
					<select id="sort1" size="1" name="Filter">
178
                    <select id="sort1" name="Filter">
179
					<option value=""/>
179
					<option value=""/>
180
					[% FOREACH SORT1_LOO IN SORT1_LOOP %]
180
					[% FOREACH SORT1_LOO IN SORT1_LOOP %]
181
						<option value="[% SORT1_LOO.authorized_value | html %]">[% SORT1_LOO.lib | html %]</option>
181
						<option value="[% SORT1_LOO.authorized_value | html %]">[% SORT1_LOO.lib | html %]</option>
Lines 192-198 Link Here
192
				<td><input type="radio" name="Line" value="sort2" /></td>
192
				<td><input type="radio" name="Line" value="sort2" /></td>
193
				<td><input type="radio" name="Column" value="sort2" /></td>
193
				<td><input type="radio" name="Column" value="sort2" /></td>
194
				<td>
194
				<td>
195
					<select id="sort2" size="1" name="Filter">
195
                    <select id="sort2" name="Filter">
196
					<option value=""/>
196
					<option value=""/>
197
					[% FOREACH SORT2_LOO IN SORT2_LOOP %]
197
					[% FOREACH SORT2_LOO IN SORT2_LOOP %]
198
						<option value="[% SORT2_LOO.value | html %]">[% SORT2_LOO.value | html %]</option>
198
						<option value="[% SORT2_LOO.value | html %]">[% SORT2_LOO.value | html %]</option>
Lines 262-273 Link Here
262
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
262
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
263
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
263
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
264
            <label class="inline" for="MIME">Into an application:</label>
264
            <label class="inline" for="MIME">Into an application:</label>
265
            <select name="MIME" id="MIME" size="1">
265
            <select name="MIME" id="MIME">
266
            [% FOREACH value IN CGIextChoice %]
266
            [% FOREACH value IN CGIextChoice %]
267
                <option value="[% value | html %]">[% value | html %]</option>
267
                <option value="[% value | html %]">[% value | html %]</option>
268
            [% END %]
268
            [% END %]
269
            </select>
269
            </select>
270
            <select name="sep" id="sep" size="1">
270
            <select name="sep" id="sep">
271
            [% FOREACH value IN CGIsepChoice.values.sort() %]
271
            [% FOREACH value IN CGIsepChoice.values.sort() %]
272
              [% IF ( value == CGIsepChoice.default ) %]
272
              [% IF ( value == CGIsepChoice.default ) %]
273
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
273
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/cat_issues_top.tt (-2 / +2 lines)
Lines 154-165 Link Here
154
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
154
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
155
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
155
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
156
            <label class="inline" for="MIME">Into an application:</label>
156
            <label class="inline" for="MIME">Into an application:</label>
157
            <select name="MIME" id="MIME" size="1">
157
            <select name="MIME" id="MIME">
158
            [% FOREACH value IN CGIextChoice %]
158
            [% FOREACH value IN CGIextChoice %]
159
                <option value="[% value | html %]">[% value | html %]</option>
159
                <option value="[% value | html %]">[% value | html %]</option>
160
            [% END %]
160
            [% END %]
161
            </select>
161
            </select>
162
            <select name="sep" id="sep" size="1">
162
            <select name="sep" id="sep">
163
            [% FOREACH value IN CGIsepChoice.values.sort() %]
163
            [% FOREACH value IN CGIsepChoice.values.sort() %]
164
              [% IF ( value == CGIsepChoice.default ) %]
164
              [% IF ( value == CGIsepChoice.default ) %]
165
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
165
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt (-1 / +1 lines)
Lines 276-282 Link Here
276
			[% END %]
276
			[% END %]
277
			</select>
277
			</select>
278
			<!-- <label class="inline" for="sep">Delimiter: </label> -->
278
			<!-- <label class="inline" for="sep">Delimiter: </label> -->
279
            <select name="sep" id="sep" size="1">
279
            <select name="sep" id="sep">
280
            [% FOREACH value IN CGIsepChoice.values.sort() %]
280
            [% FOREACH value IN CGIsepChoice.values.sort() %]
281
              [% IF ( value == CGIsepChoice.default ) %]
281
              [% IF ( value == CGIsepChoice.default ) %]
282
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
282
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-1 / +1 lines)
Lines 831-837 Link Here
831
                                        [% ELSE %]
831
                                        [% ELSE %]
832
                                            <li>
832
                                            <li>
833
                                                <label for="sql_params_[% sql_param.labelid | html %]">[% sql_param.entry | html %]:</label>
833
                                                <label for="sql_params_[% sql_param.labelid | html %]">[% sql_param.entry | html %]:</label>
834
                                                <select name="[%- sql_param.input.name | html -%]" tabindex="1"  size="1" id="[%- sql_param.input.id | html -%]">
834
                                                <select name="[%- sql_param.input.name | html -%]" tabindex="1"  id="[%- sql_param.input.id | html -%]">
835
                                                    [% IF (sql_param.include_all) %]
835
                                                    [% IF (sql_param.include_all) %]
836
                                                        <option value="%">All</option>
836
                                                        <option value="%">All</option>
837
                                                    [% END %]
837
                                                    [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_avg_stats.tt (-7 / +7 lines)
Lines 121-127 Link Here
121
                <td><input type="radio" checked="checked" name="Line" value="borrowers.categorycode" /></td>
121
                <td><input type="radio" checked="checked" name="Line" value="borrowers.categorycode" /></td>
122
				<td><input type="radio" name="Column" value="borrowers.categorycode" /></td>
122
				<td><input type="radio" name="Column" value="borrowers.categorycode" /></td>
123
                <td>
123
                <td>
124
                    <select name="Filter" size="1" id="borcat">
124
                    <select name="Filter" id="borcat">
125
                        <option value=""></option>
125
                        <option value=""></option>
126
                        [% FOREACH patron_category IN patron_categories %]
126
                        [% FOREACH patron_category IN patron_categories %]
127
                            <option value="[%- patron_category.categorycode | html -%]">[%- patron_category.description | html -%]</option>
127
                            <option value="[%- patron_category.categorycode | html -%]">[%- patron_category.description | html -%]</option>
Lines 134-140 Link Here
134
				<td><input type="radio" name="Line" value="itemtype" /></td>
134
				<td><input type="radio" name="Line" value="itemtype" /></td>
135
				<td><input type="radio" name="Column" value="itemtype" /></td>
135
				<td><input type="radio" name="Column" value="itemtype" /></td>
136
                <td>
136
                <td>
137
                    <select name="Filter" size="1" id="itemtypes">
137
                    <select name="Filter" id="itemtypes">
138
                        <option value=""></option>
138
                        <option value=""></option>
139
                        [% FOREACH itemtype IN itemtypes %]
139
                        [% FOREACH itemtype IN itemtypes %]
140
                        <option value="[%- itemtype.itemtype | html -%]">[%- itemtype.translated_description | html -%]</option>
140
                        <option value="[%- itemtype.itemtype | html -%]">[%- itemtype.translated_description | html -%]</option>
Lines 147-153 Link Here
147
				<td><input type="radio" name="Line" value="branchcode" /></td>
147
				<td><input type="radio" name="Line" value="branchcode" /></td>
148
				<td><input type="radio" name="Column" value="branchcode" /></td>
148
				<td><input type="radio" name="Column" value="branchcode" /></td>
149
                <td>
149
                <td>
150
                    <select name="Filter" size="1" id="branch">
150
                    <select name="Filter" id="branch">
151
                        <option value=""></option>
151
                        <option value=""></option>
152
                        [% PROCESS options_for_libraries libraries => Branches.all() %]
152
                        [% PROCESS options_for_libraries libraries => Branches.all() %]
153
                    </select>
153
                    </select>
Lines 159-165 Link Here
159
					<td><input type="radio" name="Line" value="borrowers.sort1" /></td>
159
					<td><input type="radio" name="Line" value="borrowers.sort1" /></td>
160
					<td><input type="radio" name="Column" value="borrowers.sort1" /></td>
160
					<td><input type="radio" name="Column" value="borrowers.sort1" /></td>
161
                    <td>
161
                    <td>
162
                        <select name="Filter" size="1" id="sort1">
162
                        <select name="Filter" id="sort1">
163
                            <option value=""></option>
163
                            <option value=""></option>
164
                            [%- FOREACH value IN Sort1.values %]
164
                            [%- FOREACH value IN Sort1.values %]
165
                            <option value="[%- value | html -%]">[%- value | html -%]</option>
165
                            <option value="[%- value | html -%]">[%- value | html -%]</option>
Lines 174-180 Link Here
174
					<td><input type="radio" name="Line" value="borrowers.sort2" /></td>
174
					<td><input type="radio" name="Line" value="borrowers.sort2" /></td>
175
					<td><input type="radio" name="Column" value="borrowers.sort2" /></td>
175
					<td><input type="radio" name="Column" value="borrowers.sort2" /></td>
176
                    <td>
176
                    <td>
177
                        <select name="Filter" size="1" id="sort2">
177
                        <select name="Filter" id="sort2">
178
                            <option value=""></option>
178
                            <option value=""></option>
179
                            [%- FOREACH value IN Sort2.values %]
179
                            [%- FOREACH value IN Sort2.values %]
180
                            <option value="[%- value | html -%]">[%- value | html -%]</option>
180
                            <option value="[%- value | html -%]">[%- value | html -%]</option>
Lines 197-206 Link Here
197
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
197
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
198
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
198
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
199
            <label class="inline" for="MIME">Into an application: </label>
199
            <label class="inline" for="MIME">Into an application: </label>
200
            <select name="MIME"  size="1" id="MIME">
200
            <select name="MIME" id="MIME">
201
                <option value="CSV">CSV</option>
201
                <option value="CSV">CSV</option>
202
            </select>
202
            </select>
203
            <select name="sep" id="sep" size="1">
203
            <select name="sep" id="sep">
204
            [% FOREACH value IN CGIsepChoice.values.sort() %]
204
            [% FOREACH value IN CGIsepChoice.values.sort() %]
205
              [% IF ( value == CGIsepChoice.default ) %]
205
              [% IF ( value == CGIsepChoice.default ) %]
206
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
206
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/issues_stats.tt (-2 / +2 lines)
Lines 339-350 Link Here
339
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
339
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
340
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
340
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
341
            <label class="inline" for="MIME">Into an application:</label>
341
            <label class="inline" for="MIME">Into an application:</label>
342
            <select name="MIME" id="MIME" size="1">
342
            <select name="MIME" id="MIME">
343
            [% FOREACH value IN CGIextChoice %]
343
            [% FOREACH value IN CGIextChoice %]
344
                <option value="[% value | html %]">[% value | html %]</option>
344
                <option value="[% value | html %]">[% value | html %]</option>
345
            [% END %]
345
            [% END %]
346
            </select>
346
            </select>
347
            <select name="sep" id="sep" size="1">
347
            <select name="sep" id="sep">
348
            [% FOREACH value IN CGIsepChoice.values.sort() %]
348
            [% FOREACH value IN CGIsepChoice.values.sort() %]
349
              [% IF ( value == CGIsepChoice.default ) %]
349
              [% IF ( value == CGIsepChoice.default ) %]
350
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
350
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt (-1 / +1 lines)
Lines 55-61 Link Here
55
            <ol>
55
            <ol>
56
              <li>
56
              <li>
57
                <label for="value">Select a library:</label>
57
                <label for="value">Select a library:</label>
58
                <select name="value" size="1" id="value">
58
                <select name="value" id="value">
59
                  <option value=""></option>
59
                  <option value=""></option>
60
                  [% PROCESS options_for_libraries libraries => Branches.all() %]
60
                  [% PROCESS options_for_libraries libraries => Branches.all() %]
61
                </select>
61
                </select>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/reserves_stats.tt (-2 / +2 lines)
Lines 260-271 Link Here
260
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
260
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
261
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
261
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
262
            <label class="inline" for="MIME">Into an application:</label>
262
            <label class="inline" for="MIME">Into an application:</label>
263
            <select name="MIME" id="MIME" size="1">
263
            <select name="MIME" id="MIME">
264
            [% FOREACH value IN CGIextChoice %]
264
            [% FOREACH value IN CGIextChoice %]
265
                <option value="[% value | html %]">[% value | html %]</option>
265
                <option value="[% value | html %]">[% value | html %]</option>
266
            [% END %]
266
            [% END %]
267
            </select>
267
            </select>
268
            <select name="sep" id="sep" size="1">
268
            <select name="sep" id="sep">
269
            [% FOREACH value IN CGIsepChoice.values.sort() %]
269
            [% FOREACH value IN CGIsepChoice.values.sort() %]
270
              [% IF ( value == CGIsepChoice.default ) %]
270
              [% IF ( value == CGIsepChoice.default ) %]
271
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
271
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt (-2 / +2 lines)
Lines 104-115 Link Here
104
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
104
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
105
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
105
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
106
            <label class="inline" for="MIME">Into an application:</label>
106
            <label class="inline" for="MIME">Into an application:</label>
107
            <select name="MIME" id="MIME" size="1">
107
            <select name="MIME" id="MIME">
108
            [% FOREACH value IN CGIextChoice %]
108
            [% FOREACH value IN CGIextChoice %]
109
                <option value="[% value | html %]">[% value | html %]</option>
109
                <option value="[% value | html %]">[% value | html %]</option>
110
            [% END %]
110
            [% END %]
111
            </select>
111
            </select>
112
            <select name="sep" id="sep" size="1">
112
            <select name="sep" id="sep">
113
            [% FOREACH value IN CGIsepChoice.values.sort() %]
113
            [% FOREACH value IN CGIsepChoice.values.sort() %]
114
              [% IF ( value == CGIsepChoice.default ) %]
114
              [% IF ( value == CGIsepChoice.default ) %]
115
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
115
                <option value="[% value | html %]" selected="selected">[% value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-3 / +3 lines)
Lines 160-166 Link Here
160
                            </li>
160
                            </li>
161
                            <li>
161
                            <li>
162
                                <label for="pickup">Pickup at:</label>
162
                                <label for="pickup">Pickup at:</label>
163
                                <select name="pickup" size="1" id="pickup">
163
                                <select name="pickup" id="pickup">
164
                                    [% PROCESS options_for_libraries libraries => Branches.all({ selected => club.branchcode, search_params => { pickup_location => 1 } }) %]
164
                                    [% PROCESS options_for_libraries libraries => Branches.all({ selected => club.branchcode, search_params => { pickup_location => 1 } }) %]
165
                                </select>
165
                                </select>
166
                            </li>
166
                            </li>
Lines 415-421 Link Here
415
                            </li>
415
                            </li>
416
                            <li>
416
                            <li>
417
                                <label for="pickup">Pickup at:</label>
417
                                <label for="pickup">Pickup at:</label>
418
                                <select name="pickup" size="1" id="pickup">
418
                                <select name="pickup" id="pickup">
419
                                    [% UNLESS ( multi_hold ) %]
419
                                    [% UNLESS ( multi_hold ) %]
420
                                        [% PROCESS options_for_libraries libraries => Branches.pickup_locations({ search_params => { biblio => biblionumber, patron => patron }, selected => pickup }) %]
420
                                        [% PROCESS options_for_libraries libraries => Branches.pickup_locations({ search_params => { biblio => biblionumber, patron => patron }, selected => pickup }) %]
421
                                    [% ELSE %]
421
                                    [% ELSE %]
Lines 428-434 Link Here
428
                                [% IF Koha.Preference('AllowHoldItemTypeSelection') %]
428
                                [% IF Koha.Preference('AllowHoldItemTypeSelection') %]
429
                                    <li>
429
                                    <li>
430
                                        <label for="itemtype">Request specific item type:</label>
430
                                        <label for="itemtype">Request specific item type:</label>
431
                                        <select name="itemtype" size="1" id="itemtype">
431
                                        <select name="itemtype" id="itemtype">
432
                                            <option value="">Any item type</option>
432
                                            <option value="">Any item type</option>
433
                                            [%- FOREACH itemtype IN available_itemtypes %]
433
                                            [%- FOREACH itemtype IN available_itemtypes %]
434
                                                <option value="[% itemtype | html %]">[% ItemTypes.GetDescription( itemtype ) | html %]</option>
434
                                                <option value="[% itemtype | html %]">[% ItemTypes.GetDescription( itemtype ) | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-edit.tt (-6 / +6 lines)
Lines 140-151 $(document).ready(function() { Link Here
140
        <td>
140
        <td>
141
            [% IF ( serialslis.editdisable ) %]
141
            [% IF ( serialslis.editdisable ) %]
142
              <input type="hidden" name="status" id="status[% serialslis.serialid | html %]" value="[% serialslis.serstatus | html %]">
142
              <input type="hidden" name="status" id="status[% serialslis.serialid | html %]" value="[% serialslis.serstatus | html %]">
143
              <select name="status" size="1"  disabled="disabled">
143
              <select name="status" disabled="disabled">
144
            [% ELSE %]
144
            [% ELSE %]
145
              [% IF ( serialslis.serialsadditems ) %]
145
              [% IF ( serialslis.serialsadditems ) %]
146
              <select name="status" size="1" id="status[% serialslis.serialid | html %]" onchange="if (this.value==2){unHideItems('items'+[% serialslis.subscriptionid | html %][% serialslis.serialid | html %],'label[% serialslis.subscriptionid | html %][% serialslis.serialid | html %]','[% serialslis.serialid | html %]'); changeDate(this, '[% serialslis.arriveddate | html %]')} else if (this.value==7){changeDate(this, '[% serialslis.arriveddate | html %]')} else { HideItems('items'+[% serialslis.subscriptionid | html %]+[% serialslis.serialid | html %],'label[% serialslis.subscriptionid | html %][% serialslis.serialid | html %]'); changeDate(this, '[% serialslis.planneddate | html %]')}" >
146
              <select name="status" id="status[% serialslis.serialid | html %]" onchange="if (this.value==2){unHideItems('items'+[% serialslis.subscriptionid | html %][% serialslis.serialid | html %],'label[% serialslis.subscriptionid | html %][% serialslis.serialid | html %]','[% serialslis.serialid | html %]'); changeDate(this, '[% serialslis.arriveddate | html %]')} else if (this.value==7){changeDate(this, '[% serialslis.arriveddate | html %]')} else { HideItems('items'+[% serialslis.subscriptionid | html %]+[% serialslis.serialid | html %],'label[% serialslis.subscriptionid | html %][% serialslis.serialid | html %]'); changeDate(this, '[% serialslis.planneddate | html %]')}" >
147
               [% ELSE %]
147
               [% ELSE %]
148
              <select name="status" size="1" id="status[% serialslis.serialid | html %]" onchange="if (this.value==2 || this.value==7){changeDate(this, '[% serialslis.arriveddate | html %]')} else {changeDate(this, '[% serialslis.planneddate | html %]')}" >
148
              <select name="status" id="status[% serialslis.serialid | html %]" onchange="if (this.value==2 || this.value==7){changeDate(this, '[% serialslis.arriveddate | html %]')} else {changeDate(this, '[% serialslis.planneddate | html %]')}" >
149
               [% END %] 
149
               [% END %] 
150
            [% END %]
150
            [% END %]
151
            [% IF ( serialslis.status1 ) %]
151
            [% IF ( serialslis.status1 ) %]
Lines 234-240 $(document).ready(function() { Link Here
234
                    <label>[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label>
234
                    <label>[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label>
235
                [% END %]
235
                [% END %]
236
                [% IF ( iteminformatio.marc_value.type == 'select' ) %]
236
                [% IF ( iteminformatio.marc_value.type == 'select' ) %]
237
                  <select name="field_value" size="1" class="select2">
237
                  <select name="field_value" class="select2">
238
                  [% FOREACH value IN iteminformatio.marc_value.values %]
238
                  [% FOREACH value IN iteminformatio.marc_value.values %]
239
                    [% IF ( value == iteminformatio.marc_value.default ) %]
239
                    [% IF ( value == iteminformatio.marc_value.default ) %]
240
                      <option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option>
240
                      <option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option>
Lines 301-307 $(document).ready(function() { Link Here
301
            <input type="text" name="planneddate" value="[% newserialloo.planneddate | html %]" size="10" maxlength="15" class="datepicker" />
301
            <input type="text" name="planneddate" value="[% newserialloo.planneddate | html %]" size="10" maxlength="15" class="datepicker" />
302
        </td>
302
        </td>
303
        <td>
303
        <td>
304
            <select name="status" size="1" id="addstatus[% newserialloo.serialid | html %]" onchange="if (this.value==2){unHideItems('items'+'[% newserialloo.subscriptionid | html %][% newserialloo.serialid | html %]','label[% newserialloo.subscriptionid | html %][% newserialloo.serialid | html %]','[% newserialloo.serialid | html %]'); changeDate(this, '[% newserialloo.arriveddate | html %]')} else if (this.value==7){changeDate(this, '[% newserialloo.arriveddate | html %]')} else { HideItems('items'+'[% newserialloo.subscriptionid | html %]'+[% newserialloo.serialid | html %],'label[% serialslis.subscriptionid | html %][% serialslis.serialid | html %]'); changeDate(this, '[% serialslis.planneddate | html %]')}" >
304
            <select name="status" id="addstatus[% newserialloo.serialid | html %]" onchange="if (this.value==2){unHideItems('items'+'[% newserialloo.subscriptionid | html %][% newserialloo.serialid | html %]','label[% newserialloo.subscriptionid | html %][% newserialloo.serialid | html %]','[% newserialloo.serialid | html %]'); changeDate(this, '[% newserialloo.arriveddate | html %]')} else if (this.value==7){changeDate(this, '[% newserialloo.arriveddate | html %]')} else { HideItems('items'+'[% newserialloo.subscriptionid | html %]'+[% newserialloo.serialid | html %],'label[% serialslis.subscriptionid | html %][% serialslis.serialid | html %]'); changeDate(this, '[% serialslis.planneddate | html %]')}" >
305
305
306
                    <option value="">----</option>
306
                    <option value="">----</option>
307
                  [% IF ( newserialloo.status1 ) %]
307
                  [% IF ( newserialloo.status1 ) %]
Lines 386-392 $(document).ready(function() { Link Here
386
                    <label>[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label>
386
                    <label>[% iteminformatio.subfield | html %] - [% iteminformatio.marc_lib | $raw %]</label>
387
                [% END %]
387
                [% END %]
388
                [% IF ( iteminformatio.marc_value.type == 'select' ) %]
388
                [% IF ( iteminformatio.marc_value.type == 'select' ) %]
389
                  <select name="field_value" size="1">
389
                  <select name="field_value">
390
                  [% FOREACH value IN iteminformatio.marc_value.values %]
390
                  [% FOREACH value IN iteminformatio.marc_value.values %]
391
                    [% IF ( value == iteminformatio.marc_value.default ) %]
391
                    [% IF ( value == iteminformatio.marc_value.default ) %]
392
                      <option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option>
392
                      <option value="[% value | html %]" selected="selected">[% iteminformatio.marc_value.labels.$value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-add.tt (-2 / +2 lines)
Lines 249-255 fieldset.rows table { clear: none; margin: 0; } Link Here
249
                                    [% END %]
249
                                    [% END %]
250
                                    <li>
250
                                    <li>
251
                                        <label for="frequency" class="required">Frequency:</label>
251
                                        <label for="frequency" class="required">Frequency:</label>
252
                                        <select name="frequency" size="1" id="frequency" class="required" required="required">
252
                                        <select name="frequency" id="frequency" class="required" required="required">
253
                                            <option value="">-- please choose --</option>
253
                                            <option value="">-- please choose --</option>
254
                                            [% FOREACH frequency IN frequencies %]
254
                                            [% FOREACH frequency IN frequencies %]
255
                                                [% IF (frequency.selected) %]
255
                                                [% IF (frequency.selected) %]
Lines 306-312 fieldset.rows table { clear: none; margin: 0; } Link Here
306
                                    </li>
306
                                    </li>
307
                                    <li>
307
                                    <li>
308
                                        <label for="numberpattern" class="required">Numbering pattern:</label>
308
                                        <label for="numberpattern" class="required">Numbering pattern:</label>
309
                                        <select name="numbering_pattern" size="1" id="numberpattern" class="required" required="required">
309
                                        <select name="numbering_pattern" id="numberpattern" class="required" required="required">
310
                                            <option value="">-- please choose --</option>
310
                                            <option value="">-- please choose --</option>
311
                                            [% FOREACH numberpattern IN numberpatterns %]
311
                                            [% FOREACH numberpattern IN numberpatterns %]
312
                                                [% IF (numberpattern.selected) %]
312
                                                [% IF (numberpattern.selected) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/services/itemrecorddisplay.tt (-1 / +1 lines)
Lines 13-19 Link Here
13
            <label>[% iteminfo.subfield | html %] - [% iteminfo.marc_lib | $raw %]</label>
13
            <label>[% iteminfo.subfield | html %] - [% iteminfo.marc_lib | $raw %]</label>
14
        [% END %]
14
        [% END %]
15
        [% IF ( iteminfo.marc_value.type == 'select' ) %]
15
        [% IF ( iteminfo.marc_value.type == 'select' ) %]
16
        <select name="field_value" size="1">
16
        <select name="field_value">
17
        [% FOREACH value IN iteminfo.marc_value.values %]
17
        [% FOREACH value IN iteminfo.marc_value.values %]
18
          [% IF ( value == iteminfo.marc_value.default ) %]
18
          [% IF ( value == iteminfo.marc_value.default ) %]
19
            <option value="[% value | html %]" selected="selected">[% iteminfo.marc_value.labels.$value | html %]</option>
19
            <option value="[% value | html %]" selected="selected">[% iteminfo.marc_value.labels.$value | html %]</option>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt (-1 / +1 lines)
Lines 255-261 Link Here
255
                                            </label>
255
                                            </label>
256
256
257
                                            [% IF ( mv.type == 'select' ) -%]
257
                                            [% IF ( mv.type == 'select' ) -%]
258
                                                <select name="[%- mv.name | html -%]" id="[%- mv.id | html -%]" size="1" tabindex="1" class="input_marceditor select2">
258
                                                <select name="[%- mv.name | html -%]" id="[%- mv.id | html -%]" tabindex="1" class="input_marceditor select2">
259
                                                    [%- FOREACH aval IN mv.values %]
259
                                                    [%- FOREACH aval IN mv.values %]
260
                                                        [% ite.subfield | html %] -
260
                                                        [% ite.subfield | html %] -
261
                                                        [% IF aval == mv.default %]
261
                                                        [% IF aval == mv.default %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/subtypes_unimarc.inc (-2 / +2 lines)
Lines 50-56 Link Here
50
    </p>
50
    </p>
51
    <p>
51
    <p>
52
        <label>Biography</label>
52
        <label>Biography</label>
53
            <select name="limit" class="subtype" size="1">
53
            <select name="limit" class="subtype">
54
                <option value="">Any</option>
54
                <option value="">Any</option>
55
                <option value="Biography-code:y">not a biography</option>
55
                <option value="Biography-code:y">not a biography</option>
56
                <option value="Biography-code:a">autobiography</option>
56
                <option value="Biography-code:a">autobiography</option>
Lines 61-67 Link Here
61
    </p>
61
    </p>
62
    <p>
62
    <p>
63
        <label>Illustration</label>
63
        <label>Illustration</label>
64
        <select name="limit" class="subtype" size="1">
64
        <select name="limit" class="subtype">
65
            <option value="">Any</option>
65
            <option value="">Any</option>
66
            <option value="Illustration-Code:a">illustrations</option>
66
            <option value="Illustration-Code:a">illustrations</option>
67
            <option value="Illustration-Code:b">maps</option>
67
            <option value="Illustration-Code:b">maps</option>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt (-2 / +1 lines)
Lines 297-303 Link Here
297
                                                    [%- END %]
297
                                                    [%- END %]
298
                                                    <li>
298
                                                    <li>
299
                                                        <label for="itemtype">Request specific item type:</label>
299
                                                        <label for="itemtype">Request specific item type:</label>
300
                                                        <select name="itemtype" size="1" id="itemtype">
300
                                                        <select name="itemtype" id="itemtype">
301
                                                            <option value="">Any item type</option>
301
                                                            <option value="">Any item type</option>
302
                                                            [% FOREACH i IN itemtypes.unique.sort %]
302
                                                            [% FOREACH i IN itemtypes.unique.sort %]
303
                                                                <option value="[% i | html %]">[% ItemTypes.GetDescription( i ) | html %]</option>
303
                                                                <option value="[% i | html %]">[% ItemTypes.GetDescription( i ) | html %]</option>
304
- 

Return to bug 28066