Lines 192-198
Link Here
|
192 |
[% IF basket.uncertainprices %] |
192 |
[% IF basket.uncertainprices %] |
193 |
<li><a href="/cgi-bin/koha/acqui/uncertainprice.pl?booksellerid=[% basket.booksellerid | uri %]&owner=1"><i class="fa-solid fa-dollar-sign"></i> Uncertain prices</a></li> |
193 |
<li><a href="/cgi-bin/koha/acqui/uncertainprice.pl?booksellerid=[% basket.booksellerid | uri %]&owner=1"><i class="fa-solid fa-dollar-sign"></i> Uncertain prices</a></li> |
194 |
[% ELSIF basket.total_items && !basket.is_standing %] |
194 |
[% ELSIF basket.total_items && !basket.is_standing %] |
195 |
<li><a href="/cgi-bin/koha/acqui/basket.pl?op=close&basketno=[% basket.basketno | uri %]&booksellerid=[% basket.booksellerid | uri %]"><i class="fa fa-times-circle"></i> Close this basket</a></li> |
195 |
<form method="post" action="/cgi-bin/koha/acqui/basket.pl"> |
|
|
196 |
[% INCLUDE 'csrf-token.inc' %] |
197 |
<input type="hidden" id="basketno" value="[% basket.basketno | html %]" name="basketno" /> |
198 |
<input type="hidden" value="cud-close" name="op" /> |
199 |
<input type="hidden" name="booksellerid" value="[% basket.booksellerid | html %]" /> |
200 |
<input type="hidden" name="confirm" value="1" /> |
201 |
<li><button type="submit" class="btn btn-default"><i class="fa fa-times-circle"></i> Close this basket</button></li> |
202 |
</form> |
196 |
[% END %] |
203 |
[% END %] |
197 |
</ul> |
204 |
</ul> |
198 |
</div> |
205 |
</div> |
199 |
- |
|
|