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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/batch_rm_items.tt (-6 / +2 lines)
Lines 1-3 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% SET footerjs = 1 %]
2
[% SET footerjs = 1 %]
2
3
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
Lines 42-52 Link Here
42
                <p>The following items were removed from all courses:</p>
43
                <p>The following items were removed from all courses:</p>
43
                <ul>
44
                <ul>
44
                    [% FOREACH i IN item_and_count %]
45
                    [% FOREACH i IN item_and_count %]
45
                      [% IF i.delcount == 1 %]
46
                        <li>[% txn('{title} ({barcode}) was removed from {count} course.', '{title} ({barcode}) was removed from {count} courses.', i.delcount, { title = i.delitem.biblio.title, barcode = i.delitem.barcode, count = i.delcount }) | html %]</li>
46
                          <li>[% i.delitem.biblio.title | html %] ([% i.delitem.barcode | html %]) was removed from [% i.delcount | html %] course.</li>
47
                      [% ELSIF i.delcount > 1 %]
48
                          <li>[% i.delitem.biblio.title | html %] ([% i.delitem.barcode | html %]) was removed from [% i.delcount | html %] courses.</li>
49
                      [% END %]
50
                    [% END %]
47
                    [% END %]
51
                </ul>
48
                </ul>
52
            [% ELSE %]
49
            [% ELSE %]
53
- 

Return to bug 14648