Bug 34791: Add links to HTML Customizations to CookieConsent preferences
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / offline_circ / enqueue_koc.tt
1 [% USE raw %]
2 [% PROCESS 'i18n.inc' %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>[% FILTER collapse %]
5     [% t("Add offline circulations to queue") | html %] &rsaquo;
6     [% t("Circulation") | html %] &rsaquo;
7     [% t("Koha") | html %]
8 [% END %]</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10 </head>
11 <body id="ocirc_enqueue_koc" class="circ ocirc">
12 [% WRAPPER 'header.inc' %]
13     [% INCLUDE 'circ-search.inc' %]
14 [% END %]
15
16 [% WRAPPER 'sub-header.inc' %]
17 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
18     <ol>
19         <li>
20             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
21         </li>
22         <li>
23             <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a>
24         </li>
25         <li>
26             <a href="#" aria-current="page">Add offline circulations to queue</a>
27         </li>
28     </ol>
29 </nav>
30 [% END %]
31
32 <div class="main container-fluid">
33     <div class="row">
34         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
35
36             <h1>Koha offline circulation</h1>
37             <div class="page-section">
38                 <p>Your file was uploaded. Once all files are uploaded, please process them in pending offline circulation actions.</p>
39
40                 [% FOREACH message IN messages %]
41                     [% IF ( message.message ) %]
42                         [% IF ( message.ERROR_file_version ) %]
43                             <div class="dialog alert"><p>Warning: This file is version [% message.upload_version | html %], but I only know how to import version [% message.current_version | html %]. I'll try my best.</div>
44                         [% END %]
45                     [% END %]
46                 [% END %]
47
48                 <p><a href="process_koc.pl">Upload another KOC file</a></p>
49
50                 <p><a href="list.pl">View pending offline circulation actions</a></p>
51             </div> <!-- /.page-section -->
52         </div>
53     </div>
54
55 [% INCLUDE 'intranet-bottom.inc' %]