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