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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt (-1 / +1 lines)
Lines 81-87 Link Here
81
[% IF ( barcode_not_unique ) %]<div class="alert alert-warning"><strong>Error saving item</strong>: Barcode must be unique.</div>[% END %]
81
[% IF ( barcode_not_unique ) %]<div class="alert alert-warning"><strong>Error saving item</strong>: Barcode must be unique.</div>[% END %]
82
[% IF ( no_next_barcode ) %]<div class="alert alert-warning"><strong>Error saving items</strong>: Unable to automatically determine values for barcodes. No item has been inserted.</div>[% END %]
82
[% IF ( no_next_barcode ) %]<div class="alert alert-warning"><strong>Error saving items</strong>: Unable to automatically determine values for barcodes. No item has been inserted.</div>[% END %]
83
[% IF ( book_on_loan ) %]<div class="alert alert-warning"><strong>Cannot delete</strong>: item is checked out.</div>[% END %]
83
[% IF ( book_on_loan ) %]<div class="alert alert-warning"><strong>Cannot delete</strong>: item is checked out.</div>[% END %]
84
[% IF ( book_reserved ) %]<div class="dialogalert"><strong>Cannot delete</strong>: item has a waiting hold.</div>[% END %]
84
[% IF ( book_reserved ) %]<div class="alert alert-warning"><strong>Cannot delete</strong>: item has a waiting hold.</div>[% END %]
85
[% IF ( not_same_branch ) %]<div class="alert alert-warning"><strong>Cannot delete</strong>: The items do not belong to your library.</div>[% END %]
85
[% IF ( not_same_branch ) %]<div class="alert alert-warning"><strong>Cannot delete</strong>: The items do not belong to your library.</div>[% END %]
86
[% IF ( linked_analytics ) %]<div class="alert alert-warning"><strong>Cannot delete</strong>: item has linked <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber | uri %]&amp;analyze=1">analytics.</a>.</div>[% END %]
86
[% IF ( linked_analytics ) %]<div class="alert alert-warning"><strong>Cannot delete</strong>: item has linked <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblio.biblionumber | uri %]&amp;analyze=1">analytics.</a>.</div>[% END %]
87
[% IF last_item_for_hold %]<div class="alert alert-warning"><strong>Cannot delete</strong>: Last item for bibliographic record with biblio-level hold on it.</div>[% END %]
87
[% IF last_item_for_hold %]<div class="alert alert-warning"><strong>Cannot delete</strong>: Last item for bibliographic record with biblio-level hold on it.</div>[% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt (-1 / +1 lines)
Lines 54-60 Link Here
54
            </div>
54
            </div>
55
            [% END %]
55
            [% END %]
56
            [% IF receipt_sent == '-1' %]
56
            [% IF receipt_sent == '-1' %]
57
            <div id="receipt_sent_dialog" class="dialog warning">
57
            <div id="receipt_sent_dialog" class="alert alert-warning">
58
              Receipt not sent, failed to find template.
58
              Receipt not sent, failed to find template.
59
            </div>
59
            </div>
60
            [% END %]
60
            [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/discharge.tt (-1 / +1 lines)
Lines 44-50 Link Here
44
44
45
<h1>Discharge</h1>
45
<h1>Discharge</h1>
46
[% FOR message IN messages %]
46
[% FOR message IN messages %]
47
    <div class="dialog [% message.type | html %]">
47
    <div class="alert alert-[% message.type | html %]">
48
    [% IF message.code == "unable_to_generate_pdf" %]
48
    [% IF message.code == "unable_to_generate_pdf" %]
49
        An error occurs when generating the PDF file.
49
        An error occurs when generating the PDF file.
50
        Please contact the administrator to resolve this problem.
50
        Please contact the administrator to resolve this problem.
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-discharge.tt (-1 / +1 lines)
Lines 29-35 Link Here
29
                <div id="discharge" class="maincontent">
29
                <div id="discharge" class="maincontent">
30
                    <h1>Discharge</h1>
30
                    <h1>Discharge</h1>
31
                    [% FOR message IN messages %]
31
                    [% FOR message IN messages %]
32
                        <div class="dialog [% message.type | html %]">
32
                        <div class="alert alert-[% message.type | html %]">
33
                        [% IF message.code == "unable_to_generate_pdf" %]
33
                        [% IF message.code == "unable_to_generate_pdf" %]
34
                            An error occurs when generating the pdf file.
34
                            An error occurs when generating the pdf file.
35
                            Please contact the staff to resolve this problem.
35
                            Please contact the staff to resolve this problem.
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-sendbasketform.tt (-2 / +1 lines)
Lines 14-20 Link Here
14
14
15
                            [% IF ( SENT ) %]
15
                            [% IF ( SENT ) %]
16
                                <h1>Message sent</h1>
16
                                <h1>Message sent</h1>
17
                                <div class="dialog dialog-success">
17
                                <div class="alert alert-info">
18
                                    <p>The cart was sent to: [% email_add | html %]</p>
18
                                    <p>The cart was sent to: [% email_add | html %]</p>
19
                                </div>
19
                                </div>
20
                                <p><a class="focus close" href="#">Close window</a></p>
20
                                <p><a class="focus close" href="#">Close window</a></p>
21
- 

Return to bug 37732