Owen Leonard
95891fe1e8
This patch finds places in the updated breadcrumbs markup where a translatable string is isolated in a way that makes it hard for the translation script to find it, and wraps these strings with <span> This follow-up includes a change to admin/cities.tt as well. Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
55 lines
1.9 KiB
Text
55 lines
1.9 KiB
Text
[% USE raw %]
|
|
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Basket ([% basketno | html %]) › Acquisitions › Koha</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
|
|
</head>
|
|
<body id="acq_edi_ean" class="acq">
|
|
[% WRAPPER 'header.inc' %]
|
|
[% INCLUDE 'acquisitions-search.inc' %]
|
|
[% END %]
|
|
|
|
[% WRAPPER 'sub-header.inc' %]
|
|
[% WRAPPER breadcrumbs %]
|
|
[% WRAPPER breadcrumb_item %]
|
|
<a href="/cgi-bin/koha/acqui/acqui-home.pl">Acquisitions</a>
|
|
[% END %]
|
|
[% WRAPPER breadcrumb_item bc_active= 1 %]
|
|
<span>Basket ([% basketno | html %])</span>
|
|
[% END %]
|
|
[% END #/ WRAPPER breadcrumbs %]
|
|
[% END #/ WRAPPER sub-header.inc %]
|
|
|
|
<div class="main container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-10 col-sm-push-2">
|
|
<main>
|
|
|
|
<h1>Select the library account submitting the EDI order</h1>
|
|
|
|
<div class="page-section">
|
|
<form action="/cgi-bin/koha/acqui/basket.pl" method="get">
|
|
<p>Select ordering library account: </p>
|
|
<select id="ean" name="ean">
|
|
[% FOREACH eanacct IN eans %]
|
|
<option value="[% eanacct.ean | html %]">[% eanacct.branch.branchname | html %] ([% eanacct.ean | html %]) [% IF eanacct.description %][[% eanacct.description | html %]][% END %]</option>
|
|
[% END %]
|
|
</select>
|
|
<input type="hidden" id="basketno" value="[% basketno | html %]" name="basketno" />
|
|
<input type="hidden" value="ediorder" name="op" />
|
|
<p>
|
|
<input type="submit" class="btn btn-primary" value="Send EDI order" />
|
|
</p>
|
|
</form>
|
|
</div> <!-- /.page-section -->
|
|
</main>
|
|
</div> <!-- /.col-sm-10.col-sm-push-2 -->
|
|
|
|
<div class="col-sm-2 col-sm-pull-10">
|
|
<aside>
|
|
[% INCLUDE 'acquisitions-menu.inc' %]
|
|
</aside>
|
|
</div> <!-- /.col-sm-2.col-sm-pull-10 -->
|
|
</div>
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|