Bug 10904: Limit patron update request management by branch
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / neworderbiblio.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Acquisitions &rsaquo; Search existing records</title>
3 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
4 [% INCLUDE 'greybox.inc' %]
5 [% INCLUDE 'doc-head-close.inc' %]
6 [% INCLUDE 'datatables.inc' %]
7 <script type="text/javascript">
8 //<![CDATA[
9  $(document).ready(function() {
10     var resultst = $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, {
11         'sDom': 't',
12         'bPaginate': false,
13         'bFilter': false,
14         'bInfo': false,
15         'bSort': false,
16     } ) );
17  });
18  //]]>
19 </script>
20 </head>
21 <body id="acq_neworderbiblio" class="acq">
22 [% INCLUDE 'header.inc' %]
23 [% INCLUDE 'acquisitions-search.inc' %]
24
25 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a> &rsaquo; <a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% booksellerid %]">[% name %]</a> &rsaquo; <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basketno %]">Basket [% basketno %]</a> &rsaquo; Search existing records</div>
26
27 <div id="doc3" class="yui-t2">
28    
29    <div id="bd">
30         <div id="yui-main">
31         <div class="yui-b">
32         
33 <h1>Search existing records</h1>
34
35
36 [% IF ( total ) %]
37 <b>[% total %] results found </b> 
38 <div class="pages">[% pagination_bar %]</div>
39 [% ELSE %]
40 <h3> No results found</h3>
41 <p>
42     No results match your search for <span style="font-weight: bold;">&ldquo;[% query %]&rdquo;</span> in [% LibraryName %]
43 </p>
44 [% END %]
45
46 [% IF ( query_error ) %]
47     <div class="dialog alert"><p><strong>Error:</strong> [% query_error %]</p></div>
48 [% END %]
49
50 [% IF ( total ) %]
51 <div class="searchresults">
52     <table id="resultst">
53     <thead>
54       <tr>
55          <th>Summary</th>
56          <th>Publisher</th>
57          <th>Copyright</th>
58          <th>&nbsp;</th>
59          <th>&nbsp;</th>
60       </tr>
61     </thead>
62     <tbody>
63       [% FOREACH biblio IN resultsloop %]
64         <tr>
65             <td>
66                 <p><span class="title">[% biblio.title |html %]</span>
67                 [% IF ( biblio.author ) %]  by <span class="author">[% biblio.author %]</span>,[% END %]</p>
68                 <p>[% IF ( biblio.isbn ) %] [% biblio.isbn %][% END %]
69                 [% IF ( biblio.pages ) %] - [% biblio.pages %][% END %]
70                 [% IF ( biblio.notes ) %] : [% biblio.notes %][% END %]
71                 [% IF ( biblio.size ) %] ; [% biblio.size %][% END %]
72                 </p>
73             </td>
74             <td>
75                 [% biblio.publishercode %]
76                 [% IF ( biblio.place ) %] ; [% biblio.place %][% END %]
77             </td>
78             <td>
79                 [% biblio.copyrightdate %]
80             </td>
81         <td>
82         <a href="/cgi-bin/koha/catalogue/showmarc.pl?id=[% biblio.biblionumber %]" title="MARC" rel="gb_page_center[600,500]">View MARC</a>
83         </td>
84             <td>
85             <a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% booksellerid %]&amp;basketno=[% basketno %]&amp;biblionumber=[% biblio.biblionumber %]" title="Order this one">
86                 Order
87             </a>
88             </td>
89         </tr>
90       [% END %]
91     </tbody>
92     </table>
93 </div>
94 [% END %]
95
96 [% INCLUDE 'acquisitions-add-to-basket.inc' %]
97
98 </div>
99 </div>
100 <div class="yui-b">
101 [% INCLUDE 'acquisitions-menu.inc' %]
102 </div>
103 </div>
104 [% INCLUDE 'intranet-bottom.inc' %]