Bug 13597: Make staff client Amazon no image results match OPAC
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / patroncards / print.tt
1 [% USE Asset %]
2 [% SET footerjs = 1 %]
3 [% INCLUDE 'doc-head-open.inc' %]
4     <title>Koha &rsaquo; Tools &rsaquo; Patron cards &rsaquo; Patron card printing/exporting</title>
5     [% INCLUDE 'doc-head-close.inc' popup => 1%]
6 </head>
7
8 <body id="pcard_print" class="tools pcard">
9     <div class="container-fluid">
10             [% IF ( batches ) %]
11             <form>
12                 <h3>Click on the following link(s) to download the exported batch(es).</h3>
13                     <fieldset>
14                     [% FOREACH batche IN batches %]
15                         [% IF ( batche.label_ids ) %]
16                         <legend>[% batche.card_count | html %] Single patron cards</legend>
17                         <p>
18                                 <a class="document pdf" href="/cgi-bin/koha/patroncards/[% batche.create_script | html %]?batch_id=[% batche.batch_id | html %]&amp;template_id=[% batche.template_id | html %]&amp;layout_id=[% batche.layout_id | html %]]&amp;layout_back_id=[% batche.layout_back_id | html %]&amp;start_card=[% batche.start_card | html %][% batche.label_ids | html %]">label_single_[% batche.card_count | html %].pdf</a>
19                         </p>
20                         [% ELSIF ( batche.borrower_numbers ) %]
21                         <legend>[% batche.card_count | html %] Single Patron Cards</legend>
22                         <p>
23                                 <a class="document pdf" href="/cgi-bin/koha/patroncards/[% batche.create_script | html %]?template_id=[% batche.template_id | html %]&amp;layout_id=[% batche.layout_id | html %]&amp;layout_back_id=[% batche.layout_back_id | html %]&amp;start_card=[% batche.start_card | html %][% batche.borrower_numbers | html %]">label_single_[% batche.card_count | html %].pdf</a>
24                         </p>
25                         [% ELSE %]
26                         <legend>Card batch number [% batche.batch_id | html %]</legend>
27                         <p>
28                                 <a class="document pdf" href="/cgi-bin/koha/patroncards/create-pdf.pl?batch_id=[% batche.batch_id | html %]&amp;template_id=[% batche.template_id | html %]&amp;layout_id=[% batche.layout_id | html %]&amp;layout_back_id=[% batche.layout_back_id | html %]&amp;start_card=[% batche.start_card | html %]">label_batch_[% batche.batch_id | html %].pdf</a>
29                         </p>
30                         [% END %]
31                     [% END %]
32                     </fieldset>
33
34                 <fieldset class="action">
35                     <input type="button" class="gb-close" value="Done" />
36                 </fieldset>
37             </form>
38             [% ELSIF ( patronlist_id && template_id && layout_id ) %]
39                 <h3>Click on the link to download the patron cards from the patron list.</h3>
40                     <p>
41                         <a class="document pdf" href="/cgi-bin/koha/patroncards/create-pdf.pl?patronlist_id=[% patronlist_id | html %]&amp;template_id=[% template_id | html %]&amp;layout_id=[% layout_id | html %]&amp;layout_back_id=[% layout_back_id | html %]&amp;start_card=[% start_card | html %]">label_patronlist_[% patronlist_id | html %].pdf</a>
42                     </p>
43             [% ELSE %]
44             <h3>
45                     [% IF ( label_ids ) %]
46                         [% IF ( card_count == 1 ) %]Exporting [% card_count | html %] patron card[% ELSE %]Exporting [% card_count | html %] patron cards[% END %]
47                     [% ELSIF ( borrower_numbers ) %]
48                         [% IF ( borrower_count == 1 ) %]Exporting [% borrower_count | html %] patron card[% ELSE %]Exporting [% borrower_count | html %] patron cards[% END %]
49                     [% ELSIF ( patronlist_id ) %] Exporting from patron list
50                     [% ELSE %]
51                         [% IF ( multi_batch_count == 1 ) %][% multi_batch_count | html %] batch to export[% ELSE %][% multi_batch_count | html %] batches to export[% END %]
52                     [% END %]
53             </h3>
54             <form id="exportingf" name="exporting" method="post" action="/cgi-bin/koha/patroncards/print.pl">
55                 <input type="hidden" name="op" value="export" />
56                 <input type="hidden" name="referer" value="[% referer | html %]" />
57                 [% FOREACH batch_id IN batch_ids %]
58                     <input type="hidden" name="batch_id" value="[% batch_id.batch_id | html %]" />
59                 [% END %]
60                 [% FOREACH label_id IN label_ids %]
61                     <input type="hidden" name="label_id" value="[% label_id.label_id | html %]" />
62                 [% END %]
63                 [% FOREACH borrower_number IN borrower_numbers %]
64                     <input type="hidden" name="borrower_number" value="[% borrower_number.borrower_number | html %]" />
65                 [% END %]
66                 [% IF (patronlist_id) %] <input type="hidden" name="patronlist_id" value="[% patronlist_id | html %]" /> [% END %]
67                 <fieldset class="rows">
68                     <ol>
69                         <li>
70                             <label style="width:9em" for="template_id">Select a template to be applied: </label>
71                             <select name="template_id" id="template_id">
72                                 [% FOREACH template IN templates %]
73                                 <option value="[% template.template_id | html %]">[% template.template_code | html %]</option>
74                                 [% END %]
75                             </select>
76                         </li>
77                         <li>
78                             <label style="width:9em" for="layout_id">Select a layout to be applied: </label>
79                             <select name="layout_id" id="layout_id">
80                                 [% FOREACH layout IN layouts %]
81                                 <option value="[% layout.layout_id | html %]">[% layout.layout_name | html %]</option>
82                                 [% END %]
83                             </select>
84                         </li>
85                         <li>
86                             <label style="width:9em" for="layout_back_id">Select a layout for back side: </label>
87                             <select name="layout_back_id" id="layout_back_id">
88                                 <option value="0">Back side layout not used</option>
89                                 [% FOREACH layout IN layouts %]
90                                 <option value="[% layout.layout_id | html %]">[% layout.layout_name | html %]</option>
91                                 [% END %]
92                             </select>
93                             <span class="hint">Used for duplex printers (needs a '1 up template')</span>
94                         </li>
95
96                         <li>
97                             <label style="width:9em" for="start_card">Enter starting card position: </label>
98                             <input type="text" size="5" id="start_card" name="start_card" class="focus" title="Starting card number" value="1" />
99                         </li>
100                     </ol>
101                 </fieldset>
102                 <fieldset class="action">
103                     <input type="submit" value="Export" />
104                     <a href="#" class="cancel gb-close">Cancel</a>
105                 </fieldset>
106             </form>
107             [% END %]
108     </div>
109
110 [% MACRO jsinclude BLOCK %]
111     [% INCLUDE 'greybox.inc' %]
112     <script>
113         function Done() {
114             window.location = "[% referer | html %]";
115         };
116         $(document).ready(function(){
117             $(".gb-close").on("click",function(){
118                 parent.parent.GB_hide();
119             });
120         });
121     </script>
122 [% END %]
123
124 [% INCLUDE 'popup-bottom.inc' %]