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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basket.tt (-1 / +1 lines)
Lines 486-492 Link Here
486
                            <p>
486
                            <p>
487
                                [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
487
                                [% IF ( books_loo.order_received ) %] <span class="order-received">(received)</span>[% END %]
488
                                [% IF books_loo.title %]
488
                                [% IF books_loo.title %]
489
                                    <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber | uri %]">[% books_loo.title | html %]</a>[% IF books_loo.author %] by [% books_loo.author | html %][% END %]
489
                                    [% INCLUDE 'biblio-title.inc' biblio=books_loo link = 1 %] [% IF books_loo.author %] by [% books_loo.author | html %][% END %]
490
                                [% ELSE %]
490
                                [% ELSE %]
491
                                    <em>Deleted bibliographic record, can't find title</em><br />
491
                                    <em>Deleted bibliographic record, can't find title</em><br />
492
                                [% END %]
492
                                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-1 / +1 lines)
Lines 342-348 Link Here
342
                <tr>
342
                <tr>
343
                  <td>
343
                  <td>
344
                    [% IF order.biblionumber %]
344
                    [% IF order.biblionumber %]
345
                      <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]">[% order.title | html %]</a>
345
                      [% INCLUDE 'biblio-title.inc' biblio=order link = 1 %]
346
                      [% IF ( order.author ) %]
346
                      [% IF ( order.author ) %]
347
                        <br /><em>by</em> [% order.author | html %]
347
                        <br /><em>by</em> [% order.author | html %]
348
                      [% END %]
348
                      [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt (-1 / +5 lines)
Lines 34-40 Link Here
34
34
35
    <fieldset class="rows">
35
    <fieldset class="rows">
36
    <legend>Catalog details</legend>
36
    <legend>Catalog details</legend>
37
    <ol><li><span class="label">Title: </span><span class="title">[% order.biblio.title | html %]</span></li>
37
    <ol>
38
        <li>
39
            <span class="label">Title: </span>
40
            [% INCLUDE 'biblio-title.inc' biblio=order.biblio link = 1 %]
41
        </li>
38
    <li> <span class="label">Author: </span>
42
    <li> <span class="label">Author: </span>
39
        [% order.biblio.author | html %]</li>
43
        [% order.biblio.author | html %]</li>
40
    <li><span class="label">Copyright: </span>
44
    <li><span class="label">Copyright: </span>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-1 / +2 lines)
Lines 213-219 Link Here
213
                    0
213
                    0
214
                  [% END %]
214
                  [% END %]
215
                </td>
215
                </td>
216
                <td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]">[% order.title | html %]</a>
216
                <td>
217
                    [% INCLUDE 'biblio-title.inc' biblio=order link = 1 %]
217
                [% IF ( order.author ) %] / [% order.author | html %][% END %]
218
                [% IF ( order.author ) %] / [% order.author | html %][% END %]
218
                [% IF ( order.isbn ) %] - [% order.isbn | html %][% END %]
219
                [% IF ( order.isbn ) %] - [% order.isbn | html %][% END %]
219
                [% IF ( order.publishercode ) %]
220
                [% IF ( order.publishercode ) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt (-2 / +1 lines)
Lines 90-96 Link Here
90
            [% uncertainpriceorder.basketname | html %]
90
            [% uncertainpriceorder.basketname | html %]
91
        </td>
91
        </td>
92
	    <td>
92
	    <td>
93
            <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% uncertainpriceorder.biblionumber | uri %]">[% uncertainpriceorder.title | html %]</a>
93
            [% INCLUDE 'biblio-title.inc' biblio=uncertainpriceorder link = 1 %]
94
            [% IF ( uncertainpriceorder.author ) %] <em>by</em> [% uncertainpriceorder.author | html %][% END %]
94
            [% IF ( uncertainpriceorder.author ) %] <em>by</em> [% uncertainpriceorder.author | html %][% END %]
95
            [% IF ( uncertainpriceorder.publishercode ) %]
95
            [% IF ( uncertainpriceorder.publishercode ) %]
96
                <br /><em>Publisher:</em> [% uncertainpriceorder.publishercode | html %]
96
                <br /><em>Publisher:</em> [% uncertainpriceorder.publishercode | html %]
97
- 

Return to bug 27817