Bug 27846: modules and modules/acqui folders
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / edi_ean.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Acquisitions &rsaquo; Basket ([% basketno | html %])</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4
5 </head>
6 <body id="acq_edi_ean" class="acq">
7 [% INCLUDE 'header.inc' %]
8 [% INCLUDE 'acquisitions-search.inc' %]
9
10 <nav aria-label="Breadcrumb" class="breadcrumb">
11     <ol>
12         <li>
13             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
14         </li>
15         <li>
16             <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
17         </li>
18         <li>
19             <a href="#" aria-current="page">Basket ([% basketno | html %])</a>
20         </li>
21     </ol>
22 </nav>
23
24 <div class="main container-fluid">
25     <div class="row">
26         <div class="col-sm-10 col-sm-push-2">
27             <main>
28
29     <h2>Select the library account submitting the EDI order</h2>
30     <br />
31     <form action="/cgi-bin/koha/acqui/basket.pl" method="get">
32          <p>Select ordering library account: </p>
33          <select id="ean" name="ean">
34              [% FOREACH eanacct IN eans %]
35              <option value="[% eanacct.ean | html %]">[% eanacct.branch.branchname | html %] ([% eanacct.ean | html %]) [% IF eanacct.description %][[% eanacct.description | html %]][% END %]</option>
36              [% END %]
37         </select>
38         <input type="hidden" id="basketno" value="[% basketno | html %]" name="basketno" />
39         <input type="hidden" value="ediorder" name="op" />
40         <p>
41             <input type="submit" value="Send EDI order" />
42         </p>
43     </form>
44 </main>
45 </div> <!-- /.col-sm-10.col-sm-push-2 -->
46
47 <div class="col-sm-2 col-sm-pull-10">
48     <aside>
49         [% INCLUDE 'acquisitions-menu.inc' %]
50     </aside>
51 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
52 </div>
53
54 [% INCLUDE 'intranet-bottom.inc' %]