From 6d90665e45ecbcd7c0f7aa85561d173b79c8509a Mon Sep 17 00:00:00 2001 From: Katrin Fischer <katrin.fischer.83@web.de> Date: Sat, 7 Apr 2018 10:38:22 +0200 Subject: [PATCH] Bug 8643: (follow-up) Move input field up below mandatory Changes sequence of input fields to be more logical by grouping repeatable, mandatory, important, like it's already done for the subfield configuration. --- .../intranet-tmpl/prog/en/modules/admin/marctagstructure.tt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt index 353bbbbd96..dd722c2d2b 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/marctagstructure.tt @@ -79,12 +79,6 @@ <input type="checkbox" name="mandatory" id="mandatory" value="1" /> [% END %] </li> - <li><label for="authorised_value">Authorized value: </label> - <select name="authorised_value" id="authorised_value" size="1"> - <option value=""></option> - [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories( selected => authorised_value ) %] - </select> - (if you select a value here, the indicators will be limited to the authorized value list)</li> <li><label for="important">Important: </label> [% IF ( important ) %] <input type="checkbox" name="important" id="important" value="1" checked="checked" /> @@ -92,6 +86,12 @@ <input type="checkbox" name="important" id="important" value="1" /> [% END %] </li> + <li><label for="authorised_value">Authorized value: </label> + <select name="authorised_value" id="authorised_value" size="1"> + <option value=""></option> + [% PROCESS options_for_authorised_value_categories authorised_value_categories => AuthorisedValues.GetCategories( selected => authorised_value ) %] + </select> + (if you select a value here, the indicators will be limited to the authorized value list)</li> </ol></fieldset> <fieldset class="action"> <input type="submit" value="Save changes" /> -- 2.14.1