Bug 22195: (follow-up) Add text labels to buttons if window is wide enough
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / acquisitions-add-to-basket.inc
1 <fieldset class="acqui_basket_add">
2     <legend>Add order to basket</legend>
3     [% IF has_budgets %]
4       <ul>
5         <li>
6           <form action="/cgi-bin/koha/acqui/neworderbiblio.pl" method="post">
7             <label>From an existing record:
8                 <input type="text"  size="25" name="q" required="required"/>
9             </label>
10             <input type="hidden" name="booksellerid" value="[% booksellerid | html %]" />
11             <input type="hidden" name="basketno" value="[% basketno | html %]" />
12             <input type="submit" class="submit" value="Search" />
13           </form>
14         </li>
15         <li><a href="/cgi-bin/koha/acqui/newordersuggestion.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">From a suggestion</a></li>
16         <li><a href="/cgi-bin/koha/acqui/newordersubscription.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">From a subscription</a></li>
17         <li><a href="/cgi-bin/koha/acqui/neworderempty.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">From a new (empty) record</a></li>
18         <li><a href="/cgi-bin/koha/acqui/duplicate_orders.pl?basketno=[% basketno | uri %]">From existing orders (copy)</a></li>
19         <li><a href="/cgi-bin/koha/acqui/z3950_search.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">From an external source</a></li>
20         <li><a href="/cgi-bin/koha/tools/stage-marc-import.pl?basketno=[% basketno | uri %]&amp;booksellerid=[% booksellerid | uri %]"> From a new file</a></li>
21         <li><a href="/cgi-bin/koha/acqui/addorderiso2709.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]"> From a staged file</a></li>
22         [% IF ( CAN_user_circulate ) %]<li><a href="/cgi-bin/koha/circ/reserveratios.pl?booksellerid=[% booksellerid | uri %]&amp;basketno=[% basketno | uri %]">From titles with highest hold ratios</a></li>[% END %]
23       </ul>
24     [% ELSE %]
25         <div class="dialog alert">
26           <p>You can't create any orders unless you first <a href="/cgi-bin/koha/admin/aqbudgetperiods.pl">define a budget and a fund</a>.</p>
27         </div>
28     [% END %]
29 </fieldset>