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

(-)a/koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css (+17 lines)
Lines 1214-1219 div.message h5 { Link Here
1214
div.message ul+h4 {
1214
div.message ul+h4 {
1215
	margin-top : .7em;
1215
	margin-top : .7em;
1216
}
1216
}
1217
1218
div.note {
1219
	background: #f4f6fa;
1220
	background-repeat : no-repeat;
1221
	background-position : left center;
1222
	background-image : url("../../img/note.png");
1223
	background-image: url("../../img/note.png"), -moz-linear-gradient(top, #f4f6fa 0%, #e8edf6 100%); /* FF3.6+ */
1224
	background-image: url("../../img/note.png"), -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4f6fa), color-stop(100%,#e8edf6)); /* Chrome,Safari4+ */
1225
	background-image: url("../../img/note.png"), -webkit-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* Chrome10+,Safari5.1+ */
1226
	background-image: url("../../img/note.png"), -o-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* Opera11.10+ */
1227
	background-image: url("../../img/note.png"), -ms-linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* IE10+ */
1228
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f6fa', endColorstr='#e8edf6',GradientType=0 ); /* IE6-9 */
1229
	background-image: url("../../img/note.png"), linear-gradient(top, #f4f6fa 0%,#e8edf6 100%); /* W3C */
1230
	border : 1px solid #BCBCBC;
1231
	padding : .5em .5em .5em 20px;
1232
	margin : .5em 0;
1233
}
1217
 
1234
 
1218
 div.results {
1235
 div.results {
1219
 	padding : .7em 0;
1236
 	padding : .7em 0;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/authorised_values.tt (-7 / +5 lines)
Lines 50-55 Link Here
50
	   [% IF ( action_add_value ) %]New authorized value[% END %]
50
	   [% IF ( action_add_value ) %]New authorized value[% END %]
51
	   [% IF ( action_add_category ) %]New category[% END %]
51
	   [% IF ( action_add_category ) %]New category[% END %]
52
	</h1>
52
	</h1>
53
54
    [% IF ( action_modify ) %]<div class="note"><strong>NOTE:</strong> If you change an authorized value, existing records using it won't be updated.</div>[% END %]
55
53
	<form action="[% script_name %]" name="Aform" method="post">
56
	<form action="[% script_name %]" name="Aform" method="post">
54
	<input type="hidden" name="op" value="add_validate" />
57
	<input type="hidden" name="op" value="add_validate" />
55
    <input type="hidden" name="offset" value="[% offset %]" />
58
    <input type="hidden" name="offset" value="[% offset %]" />
Lines 173-187 Link Here
173
</ul></div>
176
</ul></div>
174
177
175
<h1>Authorized values</h1>
178
<h1>Authorized values</h1>
176
<p>These values can be used in many pull down menus throughout the Koha system. You can define as many categories as you want, and as many authorized values as you want in each category.</p>
179
<div class="note"><strong>NOTE:</strong> If you change an authorized value, existing records using it won't be updated.</div>
177
178
<p>When you define the MARC subfield structure, you can link a subfield to a authorized-value category. When the user ask for adding of modifying a biblio, the subfield is not entered through a free field, but though a list of authorized values</p>
179
180
180
[% IF ( duplicate_category ) %]
181
[% IF ( duplicate_category ) %]
181
<div>
182
<div class="dialog alert">Could not add value &quot;[% duplicate_value %]&quot; for category &quot;[% duplicate_category %]&quot; &mdash; value already present.
182
<span class="problem">Could not add value &quot;[% duplicate_value %]&quot; for category 
183
    &quot;[% duplicate_category %]&quot; &mdash; value already present.
184
</span>
185
</div>
183
</div>
186
[% END %]
184
[% END %]
187
<form action="/cgi-bin/koha/admin/authorised_values.pl" method="post" id="category"><label for="searchfield">Show Category: </label>[% tab_list %] <input type="submit" value="Submit" /></form>
185
<form action="/cgi-bin/koha/admin/authorised_values.pl" method="post" id="category"><label for="searchfield">Show Category: </label>[% tab_list %] <input type="submit" value="Submit" /></form>

Return to bug 6133