Bug 33908: Improve translation of title tags: Acquisitions
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / acqui / edi_ean.tt
1 [% USE raw %]
2 [% PROCESS 'i18n.inc' %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>[% FILTER collapse %]
5     [% tx("Basket {basketnumber}", { basketnumber = basketno }) | html %] &rsaquo;
6     [% t("Acquisitions") | html %] &rsaquo;
7     [% t("Koha") | html %]
8 [% END %]</title>
9 [% INCLUDE 'doc-head-close.inc' %]
10
11 </head>
12 <body id="acq_edi_ean" class="acq">
13 [% WRAPPER 'header.inc' %]
14     [% INCLUDE 'acquisitions-search.inc' %]
15 [% END %]
16
17 [% WRAPPER 'sub-header.inc' %]
18     [% WRAPPER breadcrumbs %]
19         [% WRAPPER breadcrumb_item %]
20             <a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
21         [% END %]
22         [% WRAPPER breadcrumb_item bc_active= 1 %]
23             <span>Basket ([% basketno | html %])</span>
24         [% END %]
25     [% END #/ WRAPPER breadcrumbs %]
26 [% END #/ WRAPPER sub-header.inc %]
27
28 <div class="main container-fluid">
29     <div class="row">
30         <div class="col-sm-10 col-sm-push-2">
31             <main>
32
33     <h1>Select the library account submitting the EDI order</h1>
34
35     <div class="page-section">
36         <form action="/cgi-bin/koha/acqui/basket.pl" method="get">
37             <p>Select ordering library account: </p>
38             <select id="ean" name="ean">
39                 [% FOREACH eanacct IN eans %]
40                     <option value="[% eanacct.ean | html %]">[% eanacct.branch.branchname | html %] ([% eanacct.ean | html %]) [% IF eanacct.description %][[% eanacct.description | html %]][% END %]</option>
41                 [% END %]
42             </select>
43             <input type="hidden" id="basketno" value="[% basketno | html %]" name="basketno" />
44             <input type="hidden" value="ediorder" name="op" />
45             <p>
46                 <input type="submit" class="btn btn-primary" value="Send EDI order" />
47             </p>
48         </form>
49     </div> <!-- /.page-section -->
50 </main>
51 </div> <!-- /.col-sm-10.col-sm-push-2 -->
52
53 <div class="col-sm-2 col-sm-pull-10">
54     <aside>
55         [% INCLUDE 'acquisitions-menu.inc' %]
56     </aside>
57 </div> <!-- /.col-sm-2.col-sm-pull-10 -->
58 </div>
59
60 [% INCLUDE 'intranet-bottom.inc' %]