View | Details | Raw Unified | Return to bug 6337
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/basket/basket.tt (-8 / +3 lines)
Lines 132-138 function placeHold () { Link Here
132
            <form action="basket.pl" method="get" name="bookbag_form" id="bookbag_form">
132
            <form action="basket.pl" method="get" name="bookbag_form" id="bookbag_form">
133
    [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
133
    [% FOREACH BIBLIO_RESULT IN BIBLIO_RESULTS %]
134
    <h3>
134
    <h3>
135
        [% IF ( BIBLIO_RESULT.print_basket ) %]
135
        [% IF ( print_basket ) %]
136
            [% BIBLIO_RESULT.title |html %]
136
            [% BIBLIO_RESULT.title |html %]
137
                [% IF ( BIBLIO_RESULT.subtitle ) %] [% BIBLIO_RESULT.subtitle %][% END %]
137
                [% IF ( BIBLIO_RESULT.subtitle ) %] [% BIBLIO_RESULT.subtitle %][% END %]
138
                [% IF ( BIBLIO_RESULT.author ) %] [% BIBLIO_RESULT.author %][% END %]
138
                [% IF ( BIBLIO_RESULT.author ) %] [% BIBLIO_RESULT.author %][% END %]
Lines 301-307 function placeHold () { Link Here
301
</p>
301
</p>
302
    <table id="itemst">
302
    <table id="itemst">
303
	<thead><tr>
303
	<thead><tr>
304
	    <th>&nbsp;</th>
304
	    [% UNLESS ( print_basket ) %]<th>&nbsp;</th>[% END %]
305
	    <th>Title</th>
305
	    <th>Title</th>
306
	    <th>Item Type</th>
306
	    <th>Item Type</th>
307
	    <th>Location</th>
307
	    <th>Location</th>
Lines 313-319 function placeHold () { Link Here
313
            [% ELSE %]
313
            [% ELSE %]
314
                <tr>
314
                <tr>
315
            [% END %]
315
            [% END %]
316
            [% UNLESS ( BIBLIO_RESULT.print_basket ) %]<td>
316
            [% UNLESS ( print_basket ) %]<td>
317
                        <input type="checkbox" value="[% BIBLIO_RESULT.biblionumber %]" name="bib[% BIBLIO_RESULT.biblionumber %]" id="bib[% BIBLIO_RESULT.biblionumber %]" onclick="selRecord(value,checked);" />
317
                        <input type="checkbox" value="[% BIBLIO_RESULT.biblionumber %]" name="bib[% BIBLIO_RESULT.biblionumber %]" id="bib[% BIBLIO_RESULT.biblionumber %]" onclick="selRecord(value,checked);" />
318
318
319
                </td> [% END %]
319
                </td> [% END %]
Lines 347-359 function placeHold () { Link Here
347
    </table></form>
347
    </table></form>
348
[% END %]
348
[% END %]
349
349
350
[% IF ( print_basket ) %]
351
<a href="#back" class="screen">&lt;&lt; Back to Cart</a>
352
[% ELSE %]
353
<form name="myform" action="basket/basket.pl" method="get">
350
<form name="myform" action="basket/basket.pl" method="get">
354
    <input type="hidden" name="records" id="records" />
351
    <input type="hidden" name="records" id="records" />
355
</form>
352
</form>
356
[% END %]
357
353
358
</div>
354
</div>
359
</div>
355
</div>
360
- 

Return to bug 6337