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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/merge.tt (-1 / +3 lines)
Lines 227-235 function changeFramework(fw) { Link Here
227
</form>
227
</form>
228
[% ELSE %]
228
[% ELSE %]
229
[% IF ( errors ) %]
229
[% IF ( errors ) %]
230
    <div class="dialog alert">
230
    [% FOREACH error IN errors %]
231
    [% FOREACH error IN errors %]
231
	<div class="error">[% error.error %]</div>
232
        <p>[% error.error %]</p>
232
    [% END %]
233
    [% END %]
234
    </div>
233
[% ELSE %]
235
[% ELSE %]
234
<form id="mergeform" action="/cgi-bin/koha/cataloguing/merge.pl" method="post" onsubmit="return mergeformsubmit()">
236
<form id="mergeform" action="/cgi-bin/koha/cataloguing/merge.pl" method="post" onsubmit="return mergeformsubmit()">
235
237
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt (-7 / +7 lines)
Lines 28-40 function reloadPage(p) { Link Here
28
				<div class="yui-b">
28
				<div class="yui-b">
29
				    [% IF ( success || error ) %]
29
				    [% IF ( success || error ) %]
30
					    [% IF ( success ) %]
30
					    [% IF ( success ) %]
31
		[% IF ( action == 'create' ) %]<p>The new CSV profile "[% profile_name %]" has been successfully created.</p>[% END %]
31
        [% IF ( action == 'create' ) %]<div class="dialog message">The new CSV profile "[% profile_name %]" has been successfully created.</div>[% END %]
32
		[% IF ( action == 'edit' ) %]<p>The CSV profile has been successfully modified.</p>[% END %]
32
        [% IF ( action == 'edit' ) %]<div class="dialog message">The CSV profile has been successfully modified.</div>[% END %]
33
		[% IF ( action == 'delete' ) %]<p>The CSV profile has been successfully deleted.</p>[% END %]
33
        [% IF ( action == 'delete' ) %]<div class="dialog message">The CSV profile has been successfully deleted.</div>[% END %]
34
					    [% ELSE %]
34
                        [% ELSE %]
35
		[% IF ( action == 'create' ) %]<p class="error">The new CSV profile "[% profile_name %]" has not been created.</p>[% END %]
35
        [% IF ( action == 'create' ) %]<div class="dialog alert">The new CSV profile "[% profile_name %]" has not been created.</div>[% END %]
36
		[% IF ( action == 'edit' ) %]<p class="error">The CSV profile has not been modified.</p>[% END %]
36
        [% IF ( action == 'edit' ) %]<div class="dialog alert">The CSV profile has not been modified.</div>[% END %]
37
		[% IF ( action == 'delete' ) %]<p class="error">The CSV profile has not been deleted.</p>[% END %]
37
        [% IF ( action == 'delete' ) %]<div class="dialog alert">The CSV profile has not been deleted.</div>[% END %]
38
					    [% END %]
38
					    [% END %]
39
				    [% END %]
39
				    [% END %]
40
<div id="csvexporttabs" class="toptabs">
40
<div id="csvexporttabs" class="toptabs">
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-review.tt (-2 / +1 lines)
Lines 51-57 Link Here
51
<div id="userreview" class="container">
51
<div id="userreview" class="container">
52
[% IF ( cgi_debug ) %]<div class="debug">CGI debug is on.</div>[% END %]
52
[% IF ( cgi_debug ) %]<div class="debug">CGI debug is on.</div>[% END %]
53
[% IF ( ERRORS ) %]
53
[% IF ( ERRORS ) %]
54
	<div class="error">
54
    <div class="dialog alert">
55
	[% FOREACH ERROR IN ERRORS %]
55
	[% FOREACH ERROR IN ERRORS %]
56
		<p>
56
		<p>
57
		[% IF ( ERROR.scrubbed ) %]Note: your comment contained illegal markup code.
57
		[% IF ( ERROR.scrubbed ) %]Note: your comment contained illegal markup code.
58
- 

Return to bug 7889