Lines 76-87
$(document).ready(function() {
Link Here
|
76 |
|
76 |
|
77 |
[% IF ( action_modify ) %]<div class="note"><i class="fa fa-exclamation"></i> <strong>NOTE:</strong> If you change an authorized value code, existing records using it won't be updated. Changes to value descriptions will show immediately.</div>[% END %] |
77 |
[% IF ( action_modify ) %]<div class="note"><i class="fa fa-exclamation"></i> <strong>NOTE:</strong> If you change an authorized value code, existing records using it won't be updated. Changes to value descriptions will show immediately.</div>[% END %] |
78 |
|
78 |
|
79 |
<form action="/cgi-bin/koha/admin/authorised_values.pl" name="Aform" method="post"> |
79 |
<form action="/cgi-bin/koha/admin/authorised_values.pl" name="Aform" method="post" class="validated"> |
80 |
<input type="hidden" name="op" value="add" /> |
80 |
<input type="hidden" name="op" value="add" /> |
81 |
<fieldset class="rows"><ol> |
81 |
<fieldset class="rows"><ol> |
82 |
<li> |
82 |
<li> |
83 |
[% IF ( action_add_category ) %]<label for="category">Category: </label> |
83 |
[% IF ( action_add_category ) %] |
84 |
<input type="text" name="category" id="category" size="32" maxlength="32" class="focus" /> |
84 |
<label for="category" class="required">Category: </label> |
|
|
85 |
<input type="text" name="category" id="category" size="32" maxlength="32" class="focus required" /> |
86 |
<span class="required">Required</span> |
85 |
[% ELSE %]<span class="label">Category</span> |
87 |
[% ELSE %]<span class="label">Category</span> |
86 |
<input type="hidden" name="category" value="[% category %]" /> [% category %] |
88 |
<input type="hidden" name="category" value="[% category %]" /> [% category %] |
87 |
[% END %] |
89 |
[% END %] |
88 |
- |
|
|