Bug 16522: (follow-up) MARC display templates and get_marc_host fixes
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / acquisitions-search.inc
1 <!-- Begin Acquisitions Resident Search Box -->
2
3 <div id="header_search">
4     <div id="supplier_search" class="residentsearch">
5         <form name="findsupplier" action="/cgi-bin/koha/acqui/booksellers.pl" method="post">
6             <span class="form-title">
7                 <label class="control-label">Vendor search</label>
8             </span>
9
10             <span class="form-content">
11                 <input type="text" name="supplier" id="supplier" class="head-searchbox form-control" placeholder="Search vendors" />
12             </span>
13             <button type="submit"><i class="fa fa-arrow-right"></i></button>
14         </form>
15     </div>
16
17     <div id="orders_search" class="residentsearch">
18         <form action="/cgi-bin/koha/acqui/histsearch.pl" method="post">
19             <span class="form-title">
20                 <label class="control-label">Orders search</label>
21             </span>
22
23             <span class="form-content">
24                 <input type="text" id="title" class="form-control" placeholder="Title" name="title" size="13" value="[% title | html %]" />
25                 <input type="text" id="searchsupplier" class="form-control" placeholder="Vendor" name="name" size="13" value="[% name | html %]" />
26                 <button type="button" class="form-extra-content-toggle"><i class="fa fa-sliders"></i></button>
27                 <input type="hidden" id="do_search" name="do_search" value="do" />
28             </span>
29             <button type="submit"><i class="fa fa-arrow-right"></i></button>
30
31             <div class="form-extra-content">
32                 <div>
33                     <label for="basket" class="control-label">Basket</label>
34                     <input type="text" class="form-control" placeholder="Basket" name="basket" id="basket" />
35                 </div>
36                 <div>
37                     <label for="booksellerinvoicenumber" class="control-label">Invoice number</label>
38                     <input type="text" class="form-control" placeholder="Invoice number" name="booksellerinvoicenumber" id="booksellerinvoicenumber" />
39                 </div>
40                 <div>
41                     <a href="/cgi-bin/koha/acqui/histsearch.pl">Advanced search</a>
42                 </div>
43             </div>
44         </form>
45     </div>
46
47     <ul>
48         <li><a title="Vendor search" href="#supplier_search"><i class="fa fa-upload"></i> <span class="tab-title">Vendor search</span></a></li>
49         <li><a title="Orders search" href="#orders_search"><i class="fa fa-download"></i> <span class="tab-title">Orders search</span></a></li>
50     </ul>
51 </div><!-- /header_search -->
52
53 <!-- End Main page Resident Search Box -->